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