Exemple #1
0
 public static bool IsNull <TSource>(this TSource source)
 {
     return(DataFormater.IsNull(source));
 }
Exemple #2
0
 public static bool IsEmpty <T>(this T scoure) where T : struct
 {
     return(DataFormater.IsEmpty(scoure));
 }
Exemple #3
0
 public static bool IsEmpty <TSource>(this IEnumerable <TSource> source)
 {
     return(DataFormater.IsNullOrEmpty(source));
 }