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