NullableTypes Class Library

NullableSingle.NotEquals Method 

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

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

Parameters

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

Remarks

This behavior follow CLR specifications while op_Inequality follows different IEEE 754 specifications.

See Also

NullableSingle Class | NullableTypes Namespace