OpCodes.Throw 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.
Throws the exception object currently on the evaluation stack.
public: static initonly System::Reflection::Emit::OpCode Throw;
public static readonly System.Reflection.Emit.OpCode Throw;
staticval mutable Throw : System.Reflection.Emit.OpCode
Public Shared ReadOnly Throw 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 |
---|---|---|
7A | throw | Throws an exception. |
The stack transitional behavior, in sequential order, is:
An object reference (to an exception) is pushed onto the stack.
The object reference is popped from the stack and the exception thrown.
The throw
instruction throws the exception object (type O
) currently on the stack.
NullReferenceException is thrown if the object reference is a null reference.
The following Emit method overload can use the throw
opcode: