OpCodes.Neg Field

Definition

Negates a value and pushes the result onto the evaluation stack.

public: static initonly System::Reflection::Emit::OpCode Neg;
public static readonly System.Reflection.Emit.OpCode Neg;
 staticval mutable Neg : System.Reflection.Emit.OpCode
Public Shared ReadOnly Neg As OpCode 

Field Value

Remarks

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:

  1. A value is pushed onto the stack.

  2. A value is popped from the stack and negated.

  3. 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:

Applies to