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