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