add missing quotation mark
This commit is contained in:
@@ -5,7 +5,7 @@ namespace Pilz.UI.Telerik.Extensions.Extensions;
|
|||||||
|
|
||||||
public static class RadFlyoutBaseExtensions
|
public static class RadFlyoutBaseExtensions
|
||||||
{
|
{
|
||||||
public static bool IsValid([NotNullWhen(true)] this RadFlyoutBase @this)
|
public static bool IsValid([NotNullWhen(true)] this RadFlyoutBase? @this)
|
||||||
{
|
{
|
||||||
return @this != null && @this.Result == DialogResult.OK;
|
return @this != null && @this.Result == DialogResult.OK;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ namespace Pilz.UI.Extensions;
|
|||||||
|
|
||||||
public static class FlyoutBaseExtensions
|
public static class FlyoutBaseExtensions
|
||||||
{
|
{
|
||||||
public static bool IsValid([NotNullWhen(true)] this FlyoutBase @this)
|
public static bool IsValid([NotNullWhen(true)] this FlyoutBase? @this)
|
||||||
{
|
{
|
||||||
return @this != null && @this.Result == DialogResult.OK;
|
return @this != null && @this.Result == DialogResult.OK;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user