System.Collections.ICollectionExtensions.IsNullOrEmpty C# (CSharp) Méthode

IsNullOrEmpty() private méthode

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