Click or drag to resize

CollectionUtilsIsNullOrEmpty Method (IEnumerable)

Checks whether raw (non-typed) collection passed as an argument is null or has no elements.

Namespace:  PDTec.IceNet.Sdk.Utils
Assembly:  PDTec.IceNet.Sdk (in PDTec.IceNet.Sdk.dll) Version: 7.2.0.0 (7.2.7583.15464)
Syntax
C#
public static bool IsNullOrEmpty(
	IEnumerable enumerable
)

Parameters

enumerable
Type: System.CollectionsIEnumerable
Collection to be tested.

Return Value

Type: Boolean
true when collection is null or empty. false when it contains any elements.
See Also