NullableTypes Class Library

NullableDouble.NotEquals Method 

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

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

Parameters

x
A NullableDouble structure.
y
A NullableDouble 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 NullableDouble 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

NullableDouble Class | NullableTypes Namespace