NullableTypes Class Library

NullableString.NotEquals Method 

Compares two NullableString structures to determine if they are not equivalent.

[Visual Basic]
Public Shared Function NotEquals( _
   ByVal a As NullableString, _
   ByVal b As NullableString _
) As NullableBoolean
[C#]
public static NullableBoolean NotEquals(
   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