OpCodes.Ldc_I8 Campo

Definição

Envia por push um valor do tipo int64 fornecido para a pilha de avaliação como um int64.Pushes a supplied value of type int64 onto the evaluation stack as an int64.

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

Valor do campo

OpCode

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
21 < int64 >21 < int64 > LDC. i8 numldc.i8 num Envia por push num para a pilha como int64 .Pushes num onto the stack as int64.

O comportamento de transição de pilha, em ordem sequencial, é:The stack transitional behavior, in sequential order, is:

  1. O valor num é enviado por push para a pilha.The value num is pushed onto the stack.

Essa codificação envia um int64 valor para a pilha.This encoding pushes an int64 value onto the stack.

A sobrecarga do método a seguir Emit pode usar o ldc.i8 opcode:The following Emit method overload can use the ldc.i8 opcode:

Aplica-se a