[This is preliminary documentation and is subject to change.]

Determines whether the collection is null, empty or its contents are uninitialized values.

Namespace:  Facebook.Json.Utilities
Assembly:  Facebook (in Facebook.dll) Version: 0.2009.3.23 (0.2009.3.23)

Syntax

C#
public static bool IsNullOrEmptyOrDefault<T>(
	IList<T> list
)
Visual Basic (Declaration)
Public Shared Function IsNullOrEmptyOrDefault(Of T) ( _
	list As IList(Of T) _
) As Boolean
Visual C++
public:
generic<typename T>
static bool IsNullOrEmptyOrDefault(
	IList<T>^ list
)

Parameters

list
Type: System.Collections.Generic..::.IList<(Of <(T>)>)
The list.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Facebook.Json.Utilities.CollectionUtils.IsNullOrEmptyOrDefault``1(System.Collections.Generic.IList{``0})"]

Return Value

true if the collection is null or empty or its contents are uninitialized values; otherwise, false.

See Also

CollectionUtils Class
Facebook.Json.Utilities Namespace