NullableTypes Class Library

NullableInt16.Equals Method (NullableInt16, NullableInt16)

Determines if two NullableInt16 values are equal or not

[Visual Basic]
Overloads Public Shared Function Equals( _
   ByVal x As NullableInt16, _
   ByVal y As NullableInt16 _
) As NullableBoolean
[C#]
public static NullableBoolean Equals(
   NullableInt16 x,
   NullableInt16 y
);

Parameters

x
A NullableInt16 structure.
y
A NullableInt16 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 NullableInt16 is Null, the Value of the NullableBoolean will be Null.

See Also

NullableInt16 Class | NullableTypes Namespace | NullableInt16.Equals Overload List