The fields of System.Reflection.Emit.OpCodes are listed below. For a list of all members, see the OpCodes Members list.
See Also: Inherited members from System.Object
static readonly | Add | OpCode.
Adds two values and pushes the result onto the evaluation stack. |
static readonly | Add_Ovf | OpCode.
Adds two integers, performs an overflow check, and pushes the result onto the evaluation stack. |
static readonly | Add_Ovf_Un | OpCode.
Adds two unsigned integer values, performs an overflow check, and pushes the result onto the evaluation stack. |
static readonly | And | OpCode.
Computes the bitwise AND of two values and pushes the result onto the evaluation stack. |
static readonly | Arglist | OpCode.
Returns an unmanaged pointer to the argument list of the current method. |
static readonly | Beq | OpCode.
Transfers control to a target instruction if two values are equal. |
static readonly | Beq_S | OpCode.
Transfers control to a target instruction (short form) if two values are equal. |
static readonly | Bge | OpCode.
Transfers control to a target instruction if the first value is greater than or equal to the second value. |
static readonly | Bge_S | OpCode.
Transfers control to a target instruction (short form) if the first value is greater than or equal to the second value. |
static readonly | Bge_Un | OpCode.
Transfers control to a target instruction if the first value is greater than the second value, when comparing unsigned integer values or unordered float values. |
static readonly | Bge_Un_S | OpCode.
Transfers control to a target instruction (short form) if the first value is greater than the second value, when comparing unsigned integer values or unordered float values. |
static readonly | Bgt | OpCode.
Transfers control to a target instruction if the first value is greater than the second value. |
static readonly | Bgt_S | OpCode.
Transfers control to a target instruction (short form) if the first value is greater than the second value. |
static readonly | Bgt_Un | OpCode.
Transfers control to a target instruction if the first value is greater than the second value, when comparing unsigned integer values or unordered float values. |
static readonly | Bgt_Un_S | OpCode.
Transfers control to a target instruction (short form) if the first value is greater than the second value, when comparing unsigned integer values or unordered float values. |
static readonly | Ble | OpCode.
Transfers control to a target instruction if the first value is less than or equal to the second value. |
static readonly | Ble_S | OpCode.
Transfers control to a target instruction (short form) if the first value is less than or equal to the second value. |
static readonly | Ble_Un | OpCode.
Transfers control to a target instruction if the first value is less than or equal to the second value, when comparing unsigned integer values or unordered float values. |
static readonly | Ble_Un_S | OpCode.
Transfers control to a target instruction (short form) if the first value is less than or equal to the second value, when comparing unsigned integer values or unordered float values. |
static readonly | Blt | OpCode.
Transfers control to a target instruction if the first value is less than the second value. |
static readonly | Blt_S | OpCode.
Transfers control to a target instruction (short form) if the first value is less than the second value. |
static readonly | Blt_Un | OpCode.
Transfers control to a target instruction if the first value is less than the second value, when comparing unsigned integer values or unordered float values. |
static readonly | Blt_Un_S | OpCode.
Transfers control to a target instruction (short form) if the first value is less than the second value, when comparing unsigned integer values or unordered float values. |
static readonly | Bne_Un | OpCode.
Transfers control to a target instruction when two unsigned integer values or unordered float values are not equal. |
static readonly | Bne_Un_S | OpCode.
Transfers control to a target instruction (short form) when two unsigned integer values or unordered float values are not equal. |
static readonly | Box | OpCode.
Converts a value type to an object reference (type O). |
static readonly | Br | OpCode.
Unconditionally transfers control to a target instruction. |
static readonly | Br_S | OpCode.
Unconditionally transfers control to a target instruction (short form). |
static readonly | Break | OpCode.
Signals the Common Language Infrastructure (CLI) to inform the debugger that a break point has been tripped. |
static readonly | Brfalse | OpCode.
Transfers control to a target instruction if value is false, a null reference (Nothing in Visual Basic), or zero. |
static readonly | Brfalse_S | OpCode.
Transfers control to a target instruction if value is false, a null reference, or zero. |
static readonly | Brtrue | OpCode.
Transfers control to a target instruction if value is true, not null, or non-zero. |
static readonly | Brtrue_S | OpCode.
Transfers control to a target instruction (short form) if value is true, not null, or non-zero. |
static readonly | Call | OpCode.
Calls the method indicated by the passed method descriptor. |
static readonly | Calli | OpCode.
Calls the method indicated on the evaluation stack (as a pointer to an entry point) with arguments described by a calling convention. |
static readonly | Callvirt | OpCode.
Calls a late-bound method on an object, pushing the return value onto the evaluation stack. |
static readonly | Castclass | OpCode.
Attempts to cast an object passed by reference to the specified class. |
static readonly | Ceq | OpCode.
Compares two values. If they are equal, the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack. |
static readonly | Cgt | OpCode.
Compares two values. If the first value is greater than the second, the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack. |
static readonly | Cgt_Un | OpCode.
Compares two unsigned or unordered values. If the first value is greater than the second, the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack. |
static readonly | Ckfinite | OpCode.
Throws ArithmeticException if value is not a finite number. |
static readonly | Clt | OpCode.
Compares two values. If the first value is less than the second, the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack. |
static readonly | Clt_Un | OpCode.
Compares the unsigned or unordered values value1 and value2. If value1 is less than value2, then the integer value 1 (int32) is pushed onto the evaluation stack; otherwise 0 (int32) is pushed onto the evaluation stack. |
static readonly | Constrained | OpCode.
Constrains the type on which a virtual method call is made. |
static readonly | Conv_I | OpCode.
Converts the value on top of the evaluation stack to native int. |
static readonly | Conv_I1 | OpCode.
Converts the value on top of the evaluation stack to int8, then extends (pads) it to int32. |
static readonly | Conv_I2 | OpCode.
Converts the value on top of the evaluation stack to int16, then extends (pads) it to int32. |
static readonly | Conv_I4 | OpCode.
Converts the value on top of the evaluation stack to int32. |
static readonly | Conv_I8 | OpCode.
Converts the value on top of the evaluation stack to int64. |
static readonly | Conv_Ovf_I | OpCode.
Converts the signed value on top of the evaluation stack to signed native int, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_I_Un | OpCode.
Converts the unsigned value on top of the evaluation stack to signed native int, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_I1 | OpCode.
Converts the signed value on top of the evaluation stack to signed int8 and extends it to int32, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_I1_Un | OpCode.
Converts the unsigned value on top of the evaluation stack to signed int8 and extends it to int32, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_I2 | OpCode.
Converts the signed value on top of the evaluation stack to signed int16 and extending it to int32, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_I2_Un | OpCode.
Converts the unsigned value on top of the evaluation stack to signed int16 and extends it to int32, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_I4 | OpCode.
Converts the signed value on top of the evaluation stack to signed int32, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_I4_Un | OpCode.
Converts the unsigned value on top of the evaluation stack to signed int32, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_I8 | OpCode.
Converts the signed value on top of the evaluation stack to signed int64, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_I8_Un | OpCode.
Converts the unsigned value on top of the evaluation stack to signed int64, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_U | OpCode.
Converts the signed value on top of the evaluation stack to unsigned native int, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_U_Un | OpCode.
Converts the unsigned value on top of the evaluation stack to unsigned native int, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_U1 | OpCode.
Converts the signed value on top of the evaluation stack to unsigned int8 and extends it to int32, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_U1_Un | OpCode.
Converts the unsigned value on top of the evaluation stack to unsigned int8 and extends it to int32, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_U2 | OpCode.
Converts the signed value on top of the evaluation stack to unsigned int16 and extends it to int32, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_U2_Un | OpCode.
Converts the unsigned value on top of the evaluation stack to unsigned int16 and extends it to int32, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_U4 | OpCode.
Converts the signed value on top of the evaluation stack to unsigned int32, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_U4_Un | OpCode.
Converts the unsigned value on top of the evaluation stack to unsigned int32, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_U8 | OpCode.
Converts the signed value on top of the evaluation stack to unsigned int64, throwing OverflowException on overflow. |
static readonly | Conv_Ovf_U8_Un | OpCode.
Converts the unsigned value on top of the evaluation stack to unsigned int64, throwing OverflowException on overflow. |
static readonly | Conv_R_Un | OpCode.
Converts the unsigned integer value on top of the evaluation stack to float32. |
static readonly | Conv_R4 | OpCode.
Converts the value on top of the evaluation stack to float32. |
static readonly | Conv_R8 | OpCode.
Converts the value on top of the evaluation stack to float64. |
static readonly | Conv_U | OpCode.
Converts the value on top of the evaluation stack to unsigned native int, and extends it to native int. |
static readonly | Conv_U1 | OpCode.
Converts the value on top of the evaluation stack to unsigned int8, and extends it to int32. |
static readonly | Conv_U2 | OpCode.
Converts the value on top of the evaluation stack to unsigned int16, and extends it to int32. |
static readonly | Conv_U4 | OpCode.
Converts the value on top of the evaluation stack to unsigned int32, and extends it to int32. |
static readonly | Conv_U8 | OpCode.
Converts the value on top of the evaluation stack to unsigned int64, and extends it to int64. |
static readonly | Cpblk | OpCode.
Copies a specified number bytes from a source address to a destination address. |
static readonly | Cpobj | OpCode.
Copies the value type located at the address of an object (type &, * or native int) to the address of the destination object (type &, * or native int). |
static readonly | Div | OpCode.
Divides two values and pushes the result as a floating-point (type F) or quotient (type int32) onto the evaluation stack. |
static readonly | Div_Un | OpCode.
Divides two unsigned integer values and pushes the result (int32) onto the evaluation stack. |
static readonly | Dup | OpCode.
Copies the current topmost value on the evaluation stack, and then pushes the copy onto the evaluation stack. |
static readonly | Endfilter | OpCode.
Transfers control from the filter clause of an exception back to the Common Language Infrastructure (CLI) exception handler. |
static readonly | Endfinally | OpCode.
Transfers control from the fault or finally clause of an exception block back to the Common Language Infrastructure (CLI) exception handler. |
static readonly | Initblk | OpCode.
Initializes a specified block of memory at a specific address to a given size and initial value. |
static readonly | Initobj | OpCode.
Initializes each field of the value type at a specified address to a null reference or a 0 of the appropriate primitive type. |
static readonly | Isinst | OpCode.
Tests whether an object reference (type O) is an instance of a particular class. |
static readonly | Jmp | OpCode.
Exits current method and jumps to specified method. |
static readonly | Ldarg | OpCode.
Loads an argument (referenced by a specified index value) onto the stack. |
static readonly | Ldarg_0 | OpCode.
Loads the argument at index 0 onto the evaluation stack. |
static readonly | Ldarg_1 | OpCode.
Loads the argument at index 1 onto the evaluation stack. |
static readonly | Ldarg_2 | OpCode.
Loads the argument at index 2 onto the evaluation stack. |
static readonly | Ldarg_3 | OpCode.
Loads the argument at index 3 onto the evaluation stack. |
static readonly | Ldarg_S | OpCode.
Loads the argument (referenced by a specified short form index) onto the evaluation stack. |
static readonly | Ldarga | OpCode.
Load an argument address onto the evaluation stack. |
static readonly | Ldarga_S | OpCode.
Load an argument address, in short form, onto the evaluation stack. |
static readonly | Ldc_I4 | OpCode.
Pushes a supplied value of type int32 onto the evaluation stack as an int32. |
static readonly | Ldc_I4_0 | OpCode.
Pushes the integer value of 0 onto the evaluation stack as an int32. |
static readonly | Ldc_I4_1 | OpCode.
Pushes the integer value of 1 onto the evaluation stack as an int32. |
static readonly | Ldc_I4_2 | OpCode.
Pushes the integer value of 2 onto the evaluation stack as an int32. |
static readonly | Ldc_I4_3 | OpCode.
Pushes the integer value of 3 onto the evaluation stack as an int32. |
static readonly | Ldc_I4_4 | OpCode.
Pushes the integer value of 4 onto the evaluation stack as an int32. |
static readonly | Ldc_I4_5 | OpCode.
Pushes the integer value of 5 onto the evaluation stack as an int32. |
static readonly | Ldc_I4_6 | OpCode.
Pushes the integer value of 6 onto the evaluation stack as an int32. |
static readonly | Ldc_I4_7 | OpCode.
Pushes the integer value of 7 onto the evaluation stack as an int32. |
static readonly | Ldc_I4_8 | OpCode.
Pushes the integer value of 8 onto the evaluation stack as an int32. |
static readonly | Ldc_I4_M1 | OpCode.
Pushes the integer value of -1 onto the evaluation stack as an int32. |
static readonly | Ldc_I4_S | OpCode.
Pushes the supplied int8 value onto the evaluation stack as an int32, short form. |
static readonly | Ldc_I8 | OpCode.
Pushes a supplied value of type int64 onto the evaluation stack as an int64. |
static readonly | Ldc_R4 | OpCode.
Pushes a supplied value of type float32 onto the evaluation stack as type F (float). |
static readonly | Ldc_R8 | OpCode.
Pushes a supplied value of type float64 onto the evaluation stack as type F (float). |
static readonly | Ldelem | OpCode.
Loads the element at a specified array index onto the top of the evaluation stack as the type specified in the instruction. |
static readonly | Ldelem_I | OpCode.
Loads the element with type native int at a specified array index onto the top of the evaluation stack as a native int. |
static readonly | Ldelem_I1 | OpCode.
Loads the element with type int8 at a specified array index onto the top of the evaluation stack as an int32. |
static readonly | Ldelem_I2 | OpCode.
Loads the element with type int16 at a specified array index onto the top of the evaluation stack as an int32. |
static readonly | Ldelem_I4 | OpCode.
Loads the element with type int32 at a specified array index onto the top of the evaluation stack as an int32. |
static readonly | Ldelem_I8 | OpCode.
Loads the element with type int64 at a specified array index onto the top of the evaluation stack as an int64. |
static readonly | Ldelem_R4 | OpCode.
Loads the element with type float32 at a specified array index onto the top of the evaluation stack as type F (float). |
static readonly | Ldelem_R8 | OpCode.
Loads the element with type float64 at a specified array index onto the top of the evaluation stack as type F (float). |
static readonly | Ldelem_Ref | OpCode.
Loads the element containing an object reference at a specified array index onto the top of the evaluation stack as type O (object reference). |
static readonly | Ldelem_U1 | OpCode.
Loads the element with type unsigned int8 at a specified array index onto the top of the evaluation stack as an int32. |
static readonly | Ldelem_U2 | OpCode.
Loads the element with type unsigned int16 at a specified array index onto the top of the evaluation stack as an int32. |
static readonly | Ldelem_U4 | OpCode.
Loads the element with type unsigned int32 at a specified array index onto the top of the evaluation stack as an int32. |
static readonly | Ldelema | OpCode.
Loads the address of the array element at a specified array index onto the top of the evaluation stack as type & (managed pointer). |
static readonly | Ldfld | OpCode.
Finds the value of a field in the object whose reference is currently on the evaluation stack. |
static readonly | Ldflda | OpCode.
Finds the address of a field in the object whose reference is currently on the evaluation stack. |
static readonly | Ldftn | OpCode.
Pushes an unmanaged pointer (type native int) to the native code implementing a specific method onto the evaluation stack. |
static readonly | Ldind_I | OpCode.
Loads a value of type native int as a native int onto the evaluation stack indirectly. |
static readonly | Ldind_I1 | OpCode.
Loads a value of type int8 as an int32 onto the evaluation stack indirectly. |
static readonly | Ldind_I2 | OpCode.
Loads a value of type int16 as an int32 onto the evaluation stack indirectly. |
static readonly | Ldind_I4 | OpCode.
Loads a value of type int32 as an int32 onto the evaluation stack indirectly. |
static readonly | Ldind_I8 | OpCode.
Loads a value of type int64 as an int64 onto the evaluation stack indirectly. |
static readonly | Ldind_R4 | OpCode.
Loads a value of type float32 as a type F (float) onto the evaluation stack indirectly. |
static readonly | Ldind_R8 | OpCode.
Loads a value of type float64 as a type F (float) onto the evaluation stack indirectly. |
static readonly | Ldind_Ref | OpCode.
Loads an object reference as a type O (object reference) onto the evaluation stack indirectly. |
static readonly | Ldind_U1 | OpCode.
Loads a value of type unsigned int8 as an int32 onto the evaluation stack indirectly. |
static readonly | Ldind_U2 | OpCode.
Loads a value of type unsigned int16 as an int32 onto the evaluation stack indirectly. |
static readonly | Ldind_U4 | OpCode.
Loads a value of type unsigned int32 as an int32 onto the evaluation stack indirectly. |
static readonly | Ldlen | OpCode.
Pushes the number of elements of a zero-based, one-dimensional array onto the evaluation stack. |
static readonly | Ldloc | OpCode.
Loads the local variable at a specific index onto the evaluation stack. |
static readonly | Ldloc_0 | OpCode.
Loads the local variable at index 0 onto the evaluation stack. |
static readonly | Ldloc_1 | OpCode.
Loads the local variable at index 1 onto the evaluation stack. |
static readonly | Ldloc_2 | OpCode.
Loads the local variable at index 2 onto the evaluation stack. |
static readonly | Ldloc_3 | OpCode.
Loads the local variable at index 3 onto the evaluation stack. |
static readonly | Ldloc_S | OpCode.
Loads the local variable at a specific index onto the evaluation stack, short form. |
static readonly | Ldloca | OpCode.
Loads the address of the local variable at a specific index onto the evaluation stack. |
static readonly | Ldloca_S | OpCode.
Loads the address of the local variable at a specific index onto the evaluation stack, short form. |
static readonly | Ldnull | OpCode.
Pushes a null reference (type O) onto the evaluation stack. |
static readonly | Ldobj | OpCode.
Copies the value type object pointed to by an address to the top of the evaluation stack. |
static readonly | Ldsfld | OpCode.
Pushes the value of a static field onto the evaluation stack. |
static readonly | Ldsflda | OpCode.
Pushes the address of a static field onto the evaluation stack. |
static readonly | Ldstr | OpCode.
Pushes a new object reference to a string literal stored in the metadata. |
static readonly | Ldtoken | OpCode.
Converts a metadata token to its runtime representation, pushing it onto the evaluation stack. |
static readonly | Ldvirtftn | OpCode.
Pushes an unmanaged pointer (type native int) to the native code implementing a particular virtual method associated with a specified object onto the evaluation stack. |
static readonly | Leave | OpCode.
Exits a protected region of code, unconditionally transferring control to a specific target instruction. |
static readonly | Leave_S | OpCode.
Exits a protected region of code, unconditionally transferring control to a target instruction (short form). |
static readonly | Localloc | OpCode.
Allocates a certain number of bytes from the local dynamic memory pool and pushes the address (a transient pointer, type *) of the first allocated byte onto the evaluation stack. |
static readonly | Mkrefany | OpCode.
Pushes a typed reference to an instance of a specific type onto the evaluation stack. |
static readonly | Mul | OpCode.
Multiplies two values and pushes the result on the evaluation stack. |
static readonly | Mul_Ovf | OpCode.
Multiplies two integer values, performs an overflow check, and pushes the result onto the evaluation stack. |
static readonly | Mul_Ovf_Un | OpCode.
Multiplies two unsigned integer values, performs an overflow check, and pushes the result onto the evaluation stack. |
static readonly | Neg | OpCode.
Negates a value and pushes the result onto the evaluation stack. |
static readonly | Newarr | OpCode.
Pushes an object reference to a new zero-based, one-dimensional array whose elements are of a specific type onto the evaluation stack. |
static readonly | Newobj | OpCode.
Creates a new object or a new instance of a value type, pushing an object reference (type O) onto the evaluation stack. |
static readonly | Nop | OpCode.
Fills space if opcodes are patched. No meaningful operation is performed although a processing cycle can be consumed. |
static readonly | Not | OpCode.
Computes the bitwise complement of the integer value on top of the stack and pushes the result onto the evaluation stack as the same type. |
static readonly | Or | OpCode.
Compute the bitwise complement of the two integer values on top of the stack and pushes the result onto the evaluation stack. |
static readonly | Pop | OpCode.
Removes the value currently on top of the evaluation stack. |
static readonly | Prefix1 | OpCode.
This is a reserved instruction. |
static readonly | Prefix2 | OpCode.
This is a reserved instruction. |
static readonly | Prefix3 | OpCode.
This is a reserved instruction. |
static readonly | Prefix4 | OpCode.
This is a reserved instruction. |
static readonly | Prefix5 | OpCode.
This is a reserved instruction. |
static readonly | Prefix6 | OpCode.
This is a reserved instruction. |
static readonly | Prefix7 | OpCode.
This is a reserved instruction. |
static readonly | Prefixref | OpCode.
This is a reserved instruction. |
static readonly | Readonly | OpCode.
Specifies that the subsequent array address operation performs no type check at run time, and that it returns a managed pointer whose mutability is restricted. |
static readonly | Refanytype | OpCode.
Retrieves the type token embedded in a typed reference. |
static readonly | Refanyval | OpCode.
Retrieves the address (type &) embedded in a typed reference. |
static readonly | Rem | OpCode.
Divides two values and pushes the remainder onto the evaluation stack. |
static readonly | Rem_Un | OpCode.
Divides two unsigned values and pushes the remainder onto the evaluation stack. |
static readonly | Ret | OpCode.
Returns from the current method, pushing a return value (if present) from the callee's evaluation stack onto the caller's evaluation stack. |
static readonly | Rethrow | OpCode.
Rethrows the current exception. |
static readonly | Shl | OpCode.
Shifts an integer value to the left (in zeroes) by a specified number of bits, pushing the result onto the evaluation stack. |
static readonly | Shr | OpCode.
Shifts an integer value (in sign) to the right by a specified number of bits, pushing the result onto the evaluation stack. |
static readonly | Shr_Un | OpCode.
Shifts an unsigned integer value (in zeroes) to the right by a specified number of bits, pushing the result onto the evaluation stack. |
static readonly | Sizeof | OpCode.
Pushes the size, in bytes, of a supplied value type onto the evaluation stack. |
static readonly | Starg | OpCode.
Stores the value on top of the evaluation stack in the argument slot at a specified index. |
static readonly | Starg_S | OpCode.
Stores the value on top of the evaluation stack in the argument slot at a specified index, short form. |
static readonly | Stelem | OpCode.
Replaces the array element at a given index with the value on the evaluation stack, whose type is specified in the instruction. |
static readonly | Stelem_I | OpCode.
Replaces the array element at a given index with the native int value on the evaluation stack. |
static readonly | Stelem_I1 | OpCode.
Replaces the array element at a given index with the int8 value on the evaluation stack. |
static readonly | Stelem_I2 | OpCode.
Replaces the array element at a given index with the int16 value on the evaluation stack. |
static readonly | Stelem_I4 | OpCode.
Replaces the array element at a given index with the int32 value on the evaluation stack. |
static readonly | Stelem_I8 | OpCode.
Replaces the array element at a given index with the int64 value on the evaluation stack. |
static readonly | Stelem_R4 | OpCode.
Replaces the array element at a given index with the float32 value on the evaluation stack. |
static readonly | Stelem_R8 | OpCode.
Replaces the array element at a given index with the float64 value on the evaluation stack. |
static readonly | Stelem_Ref | OpCode.
Replaces the array element at a given index with the object ref value (type O) on the evaluation stack. |
static readonly | Stfld | OpCode.
Replaces the value stored in the field of an object reference or pointer with a new value. |
static readonly | Stind_I | OpCode.
Stores a value of type native int at a supplied address. |
static readonly | Stind_I1 | OpCode.
Stores a value of type int8 at a supplied address. |
static readonly | Stind_I2 | OpCode.
Stores a value of type int16 at a supplied address. |
static readonly | Stind_I4 | OpCode.
Stores a value of type int32 at a supplied address. |
static readonly | Stind_I8 | OpCode.
Stores a value of type int64 at a supplied address. |
static readonly | Stind_R4 | OpCode.
Stores a value of type float32 at a supplied address. |
static readonly | Stind_R8 | OpCode.
Stores a value of type float64 at a supplied address. |
static readonly | Stind_Ref | OpCode.
Stores a object reference value at a supplied address. |
static readonly | Stloc | OpCode.
Pops the current value from the top of the evaluation stack and stores it in a the local variable list at a specified index. |
static readonly | Stloc_0 | OpCode.
Pops the current value from the top of the evaluation stack and stores it in a the local variable list at index 0. |
static readonly | Stloc_1 | OpCode.
Pops the current value from the top of the evaluation stack and stores it in a the local variable list at index 1. |
static readonly | Stloc_2 | OpCode.
Pops the current value from the top of the evaluation stack and stores it in a the local variable list at index 2. |
static readonly | Stloc_3 | OpCode.
Pops the current value from the top of the evaluation stack and stores it in a the local variable list at index 3. |
static readonly | Stloc_S | OpCode.
Pops the current value from the top of the evaluation stack and stores it in a the local variable list at index (short form). |
static readonly | Stobj | OpCode.
Copies a value of a specified type from the evaluation stack into a supplied memory address. |
static readonly | Stsfld | OpCode.
Replaces the value of a static field with a value from the evaluation stack. |
static readonly | Sub | OpCode.
Subtracts one value from another and pushes the result onto the evaluation stack. |
static readonly | Sub_Ovf | OpCode.
Subtracts one integer value from another, performs an overflow check, and pushes the result onto the evaluation stack. |
static readonly | Sub_Ovf_Un | OpCode.
Subtracts one unsigned integer value from another, performs an overflow check, and pushes the result onto the evaluation stack. |
static readonly | Switch | OpCode.
Implements a jump table. |
static readonly | Tailcall | OpCode.
Performs a postfixed method call instruction such that the current method's stack frame is removed before the actual call instruction is executed. |
static readonly | Throw | OpCode.
Throws the exception object currently on the evaluation stack. |
static readonly | Unaligned | OpCode.
Indicates that an address currently atop the evaluation stack might not be aligned to the natural size of the immediately following ldind, stind, ldfld, stfld, ldobj, stobj, initblk, or cpblk instruction. |
static readonly | Unbox | OpCode.
Converts the boxed representation of a value type to its unboxed form. |
static readonly | Unbox_Any | OpCode.
Converts the boxed representation of a type specified in the instruction to its unboxed form. |
static readonly | Volatile | OpCode.
Specifies that an address currently atop the evaluation stack might be volatile, and the results of reading that location cannot be cached or that multiple stores to that location cannot be suppressed. |
static readonly | Xor | OpCode.
Computes the bitwise XOR of the top two values on the evaluation stack, pushing the result onto the evaluation stack. |