OpCodes.Cgt Field
Assembly: mscorlib (in mscorlib.dll)
The following table lists the instruction's hexadecimal and Microsoft Intermediate Language (MSIL) assembly format, along with a brief reference summary:
| Format | Assembly Format | Description |
|---|---|---|
| FE 02 | cgt | Pushes 1 if value1 is greater than value2; else pushes 0. |
The stack transitional behavior, in sequential order, is:
-
value1 is pushed onto the stack.
-
value2 is pushed onto the stack.
-
value2 and value1 are popped from the stack; cgt tests if value1 is greater than value2.
-
If value1 is greater than value2, 1 is pushed onto the stack; otherwise 0 is pushed onto the stack.
The cgt instruction compares value1 and value2. If value1 is strictly greater than value2, then an int32 value of 1 is pushed on the stack. Otherwise, an int32 value of 0 is pushed on the stack.
-
For floating-point numbers, cgt returns 0 if the numbers are unordered (that is, if one or both of the arguments are NaN).
The following Emit method overload can use the cgt opcode:
-
ILGenerator.Emit(OpCode)
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.