TechTalk Genome v4.2

NullableSingle.GreaterThanOrEqual Method 

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

public static NullableBoolean GreaterThanOrEqual(
   NullableSingle x,
   NullableSingle y
);

Parameters

x
A NullableSingle structure.
y
A NullableSingle structure.

Return Value

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

Remarks

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

Requirements

Namespace: TechTalk.Genome.NullableTypes

Assembly: TechTalk.Genome (in TechTalk.Genome.dll)

Version: 4.2.4.4

Editions: Professional, Evaluation, Express

See Also

NullableSingle Class | TechTalk.Genome.NullableTypes Namespace