make some projects compatible with netframework4.8 again

This commit is contained in:
2025-02-11 07:18:14 +01:00
parent f08c94908a
commit 07ab60666a
32 changed files with 57 additions and 55 deletions

View File

@@ -5,7 +5,7 @@ namespace Pilz.UI.Telerik.Extensions.Extensions;
public static class RadFlyoutBaseExtensions
{
public static bool IsValid([NotNullWhen(true)] this RadFlyoutBase? @this)
public static bool IsValid(this RadFlyoutBase? @this)
{
return @this != null && @this.Result == DialogResult.OK;
}