TechTalk Genome v4.2

NullableInt32 Greater Than Operator 

Compares two instances of NullableInt32 structure to determine if the first is greater than the second.

public static NullableBoolean operator >(
   NullableInt32 x,
   NullableInt32 y
);

Parameters

x
A NullableInt32 structure.
y
A NullableInt32 structure.

Return Value

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

Requirements

Namespace: TechTalk.Genome.NullableTypes

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

Version: 4.2.4.4

Editions: Professional, Evaluation, Express

See Also

NullableInt32 Class | TechTalk.Genome.NullableTypes Namespace