IsNull()

System::Collections::Generic::Details::CastRules::IsNull(T) function

Checks that the represented value is nullptr.

template<typename T> bool System::Collections::Generic::Details::CastRules::IsNull(T)

Template parameters

ParameterDescription
TThe value type.

Return Value

Always returns false.

System::Collections::Generic::Details::CastRules::IsNull(SharedPtr<T>) function

Checks that the represented value is nullptr.

template<typename T> bool System::Collections::Generic::Details::CastRules::IsNull(SharedPtr<T> value)

Template parameters

ParameterDescription
TThe value type.

Arguments

ParameterTypeDescription
valueSharedPtr<T>The value that must be checked.

Return Value

True if the value is nullptr, otherwise false.

System::Collections::Generic::Details::CastRules::IsNull(Nullable<T>) function

Checks that the represented value is nullptr.

template<typename T> bool System::Collections::Generic::Details::CastRules::IsNull(Nullable<T> value)

Template parameters

ParameterDescription
TThe value type.

Arguments

ParameterTypeDescription
valueNullable<T>The value that must be checked.

Return Value

True if the value is nullptr, otherwise false.

See Also