NullableTypes Class Library

NullableString.Equals Method (NullableString, NullableString)

Compares two NullableString structures to determine if they are equivalent.

[Visual Basic]
Overloads Public Shared Function Equals( _
   ByVal a As NullableString, _
   ByVal b As NullableString _
) As NullableBoolean
[C#]
public static NullableBoolean Equals(
   NullableString a,
   NullableString b
);

Parameters

a
A NullableString structure.
b
A NullableString structure.

Return Value

A NullableBoolean that is True if the two instances are equivalent or False 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 | NullableString.Equals Overload List