System.Reflection.Emit.OpCodes.Ldc_I4_0 Field

Pushes the integer value of 0 onto the evaluation stack as an int32.

Syntax

public static readonly OpCode Ldc_I4_0

Remarks

The following table lists the instruction's hexadecimal and Microsoft Intermediate Language (MSIL) assembly format, along with a brief reference summary:

16

ldc.i4.0

Pushes 0 onto the stack.

The stack transitional behavior, in sequential order, is:

[The 'ordered' type of list has not been implemented in the ECMA stylesheet.]

This is a special short encoding for the push of the integer value 0. All special short encodings push 4 byte integers on the stack.

The following ILGenerator.Emit(OpCode) method overload can use the ldc.i4.0 opcode:

  • ILGenerator.Emit(OpCode)

Requirements

Namespace: System.Reflection.Emit
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0