Beispiel #1
0
 public static bool notnull <T>(T value) =>
 !Check <T> .IsNull(value);
Beispiel #2
0
 public static bool IsNull <A>(this A value) =>
 Check <A> .IsNull(value);
Beispiel #3
0
 public static bool isnull <T>(T value) =>
 Check <T> .IsNull(value);
Beispiel #4
0
 public static bool IsNull <T>(this T value) =>
 Check <T> .IsNull(value);