OpCodes.Arglist 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.
Returns an unmanaged pointer to the argument list of the current method.
public: static initonly System::Reflection::Emit::OpCode Arglist;
public static readonly System.Reflection.Emit.OpCode Arglist;
staticval mutable Arglist : System.Reflection.Emit.OpCode
Public Shared ReadOnly Arglist 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 |
---|---|---|
FE 00 | arglist | Returns an argument list handle for the current method. |
No evaluation stack behaviors are performed by this operation.
The arglist
instruction returns an opaque handle (an unmanaged pointer, of type native int
) that represents the argument list of the current method. This handle is valid only during the lifetime of the current method. You can, however, pass the handle to other methods as long as the current method is on the thread of control. You can only execute the arglist
instruction within a method that takes a variable number of arguments.
The following Emit method overload can use the arglist
opcode: