OpCodes.Ldc_I4_3 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 |
|---|---|---|
| 19 | ldc.i4.3 | Pushes 3 onto the stack. |
The stack transitional behavior, in sequential order, is:
-
The value 3 is pushed onto the stack.
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 Emit method overload can use the ldc.i4.3 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.