OpCodes.Ldc_I4_S Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Pushes the supplied int8
value onto the evaluation stack as an int32
, short form.
public: static initonly System::Reflection::Emit::OpCode Ldc_I4_S;
public static readonly System.Reflection.Emit.OpCode Ldc_I4_S;
staticval mutable Ldc_I4_S : System.Reflection.Emit.OpCode
Public Shared ReadOnly Ldc_I4_S 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 |
---|---|---|
1F < int8 > |
ldc.i4.s num |
Pushes num onto the stack as int32 , short form. |
The stack transitional behavior, in sequential order, is:
- The value
num
is pushed onto the stack.
ldc.i4.s
is a more efficient encoding for pushing the integers from -128 to 127 onto the evaluation stack.
The following Emit method overloads can use the ldc.i4.s
opcode: