NullableTypes Class Library

NullableString Inequality Operator 

Compares two instances of NullableString for equivalence.

[Visual Basic]
returnValue = NullableString.op_Inequality(a, b)
[C#]
public static NullableBoolean operator !=(
   NullableString a,
   NullableString b
);

Parameters

a
A NullableString structure.
b
A NullableString structure.

Return Value

A NullableBoolean that is False if the two instances are equivalent or True if the two instances are not equivalent. If either instance of NullableString is Null, the Value of the NullableBoolean will be Null.

See Also

NullableString Class | NullableTypes Namespace