NullableTypes Class Library

NullableInt16 Inequality Operator 

Compares two instances of NullableInt16 for equivalence.

[Visual Basic]
returnValue = NullableInt16.op_Inequality(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 False if the two instances are equivalent or True 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