Apache.Shiro.Collections.CollectionExtensions.IsEmpty C# (CSharp) Method

IsEmpty() public static method

public static IsEmpty ( this collection ) : bool
collection this
return bool
        public static bool IsEmpty(this ICollection collection)
        {
            return (collection == null || collection.Count == 0);
        }
CollectionExtensions