The following table lists the instruction's hexadecimal and Microsoft Intermediate Language (MSIL) assembly format, along with a brief reference summary:
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 ILGenerator.Emit(OpCode) method overload can use the arglist opcode:
ILGenerator.Emit(OpCode)