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