OpCodes.Arglist Field

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Returns an unmanaged pointer to the argument list of the current method.

Namespace:  System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)

Syntax

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

Windows Phone OS

Supported in: 8.1, 8.0, 7.1

Platforms

Windows Phone

See Also

Reference

OpCodes Class

System.Reflection.Emit Namespace