NullableTypes Class Library

NullableBoolean True Operator 

The true operator can be used to test the Value of the NullableBoolean to determine whether it is true.

[Visual Basic]
returnValue = NullableBoolean.op_True(x)
[C#]
public static bool operator true(
   NullableBoolean x
);

Parameters

x
A NullableBoolean structure.

Return Value

true if Value is True, otherwise false.

Remarks

If the Value is Null, this operator still return false.

See Also

NullableBoolean Class | NullableTypes Namespace