NullableTypes Class Library

NullableDouble Greater Than Or Equal Operator 

Compares two instances of NullableDouble structure to determine if the first is greater than or equal to the second.

[Visual Basic]
returnValue = NullableDouble.op_GreaterThanOrEqual(x, y)
[C#]
public static NullableBoolean operator >=(
   NullableDouble x,
   NullableDouble y
);

Parameters

x
A NullableDouble structure.
y
A NullableDouble structure.

Return Value

A NullableBoolean structure that is Null if either instance of NullableDouble is Null, True if the first instance is greater than or equal to the second instance, otherwise False.

Remarks

This operator follows IEEE 754 specifications: if either operand is NaN the result is false; negative and positive zero are considered equal; a NegativeInfinity is considered less than all other values, but equal to another NegativeInfinity; a PositiveInfinity is considered greater than all other values, but equal to another PositiveInfinity.

See Also

NullableDouble Class | NullableTypes Namespace