System.Collections.ICollectionExtensions.IsNullOrEmpty C# (CSharp) 메소드

IsNullOrEmpty() 개인적인 메소드

private IsNullOrEmpty ( [ list ) : bool
list [
리턴 bool
		public static bool IsNullOrEmpty([CanBeNull] this ICollection list)
		{
			return list == null || list.Count == 0;
		}
	}
ICollectionExtensions