OpCodes.Neg Field
Negates a value and pushes the result onto the evaluation stack.
Namespace: System.Reflection.Emit
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 |
|---|---|---|
65 | neg | Negates the value currently on top of the stack. |
The stack transitional behavior, in sequential order, is:
A value is pushed onto the stack.
A value is popped from the stack and negated.
The result is pushed onto the stack.
The neg instruction negates value and pushes the result on top of the stack. The return type is the same as the operand type.
Negation of integral values is standard two's complement negation. In particular, negating the most negative number (which does not have a positive counterpart) yields the most negative number. To detect this overflow use the Sub_Ovf instruction instead (that is, subtract from 0).
Negating a floating-point number cannot overflow, and negating NaN returns NaN.
The following Emit method overload can use the neg opcode:
ILGenerator.Emit(OpCode)
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.