NullableTypes Class Library

NullableInt16 Equality Operator 

Compares two instances of NullableInt16 for equivalence.

[Visual Basic]
returnValue = NullableInt16.op_Equality(x, y)
[C#]
public static NullableBoolean operator ==(
   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