Arglist Field
TOC
Collapse the table of content
Expand the table of content

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)

'Declaration
Public Shared ReadOnly Arglist As OpCode

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)

Windows Phone OS

Supported in: 8.1, 8.0, 7.1

Windows Phone

Show:
© 2017 Microsoft