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