OpCodes.Ldc_I4_6 Campo
Definição
Efetua o push do valor inteiro de 6 para a pilha de avaliação como um int32.Pushes the integer value of 6 onto the evaluation stack as an int32.
public: static initonly System::Reflection::Emit::OpCode Ldc_I4_6;
public static readonly System.Reflection.Emit.OpCode Ldc_I4_6;
staticval mutable Ldc_I4_6 : System.Reflection.Emit.OpCode
Public Shared ReadOnly Ldc_I4_6 As OpCode
Valor do campo
Comentários
A tabela a seguir lista o formato de assembly hexadecimal e da MSIL (Microsoft Intermediate Language) da instrução, juntamente com um resumo de referência breve:The following table lists the instruction's hexadecimal and Microsoft Intermediate Language (MSIL) assembly format, along with a brief reference summary:
| FormatarFormat | Formato do assemblyAssembly Format | DescriçãoDescription |
|---|---|---|
| 1C1C | LDC. i 4.6ldc.i4.6 | Envia 6 para a pilha.Pushes 6 onto the stack. |
O comportamento de transição de pilha, em ordem sequencial, é:The stack transitional behavior, in sequential order, is:
- O valor 6 é enviado por push para a pilha.The value 6 is pushed onto the stack.
Essa é uma codificação curta especial para o envio do valor inteiro 6.This is a special short encoding for the push of the integer value 6. Todas as codificações curtas especiais enviam inteiros de 4 bytes na pilha.All special short encodings push 4 byte integers on the stack.
A sobrecarga do método a seguir Emit pode usar o ldc.i4.6 opcode:The following Emit method overload can use the ldc.i4.6 opcode: