Apache.Shiro.Collections.CollectionExtensions.IsEmpty C# (CSharp) Метод

IsEmpty() публичный статический Метод

public static IsEmpty ( this collection ) : bool
collection this
Результат bool
        public static bool IsEmpty(this ICollection collection)
        {
            return (collection == null || collection.Count == 0);
        }
CollectionExtensions