Ejemplo n.º 1
0
 public static bool IsEmpty(this System.Collections.ICollection c)
 {
     if (c.IsNull())
     {
         throw new System.NullReferenceException();
     }
     return(c.Count.Equals(0));
 }
Ejemplo n.º 2
0
 public static bool IsNullOrEmpty(this System.Collections.ICollection c)
 {
     return(c.IsNull() || c.Count.Equals(0));
 }