OpCodes.Arglist Field
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Returns an unmanaged pointer to the argument list of the current method.
Namespace: System.Reflection.Emit
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Shared ReadOnly Arglist As OpCode
public static readonly OpCode Arglist
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:
- ILGenerator.Emit(OpCode)
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.