Table of Contents

Enum CilCode

Namespace
AsmResolver.PE.DotNet.Cil
Assembly
AsmResolver.PE.dll

Provides members defining all possible numerical values for each CIL operation code.

public enum CilCode : ushort
Extension Methods

Fields

Add = 88

Add two values, returning a new value.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.add?view=net-6.0

Add_Ovf = 214

Add signed integer values with overflow check.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.add_ovf?view=net-6.0

Add_Ovf_Un = 215

Add unsigned integer values with overflow check.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.add_ovf_un?view=net-6.0

And = 95

Bitwise AND of two integral values, returns an integral value.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.and?view=net-6.0

Arglist = 65024

Return argument list handle for the current method.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.arglist?view=net-6.0

Beq = 59

Branch to target if equal.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.beq?view=net-6.0

Beq_S = 46

Branch to target if equal, short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.beq_s?view=net-6.0

Bge = 60

Branch to target if greater than or equal to.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.bge?view=net-6.0

Bge_S = 47

Branch to target if greater than or equal to, short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.bge_s?view=net-6.0

Bge_Un = 65

Branch to target if greater than or equal to (unsigned or unordered).

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.bge_un?view=net-6.0

Bge_Un_S = 52

Branch to target if greater than or equal to (unsigned or unordered), short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.bge_un_s?view=net-6.0

Bgt = 61

Branch to target if greater than.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.bgt?view=net-6.0

Bgt_S = 48

Branch to target if greater than, short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.bgt_s?view=net-6.0

Bgt_Un = 66

Branch to target if greater than (unsigned or unordered).

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.bgt_un?view=net-6.0

Bgt_Un_S = 53

Branch to target if greater than (unsigned or unordered), short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.bgt_un_s?view=net-6.0

Ble = 62

Branch to target if less than or equal to.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ble?view=net-6.0

Ble_S = 49

Branch to target if less than or equal to, short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ble_s?view=net-6.0

Ble_Un = 67

Branch to target if less than or equal to (unsigned or unordered).

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ble_un?view=net-6.0

Ble_Un_S = 54

Branch to target if less than or equal to (unsigned or unordered), short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ble_un_s?view=net-6.0

Blt = 63

Branch to target if less than.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.blt?view=net-6.0

Blt_S = 50

Branch to target if less than, short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.blt_s?view=net-6.0

Blt_Un = 68

Branch to target if less than (unsigned or unordered).

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.blt_un?view=net-6.0

Blt_Un_S = 55

Branch to target if less than (unsigned or unordered), short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.blt_un_s?view=net-6.0

Bne_Un = 64

Branch to target if unequal or unordered.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.bne_un?view=net-6.0

Bne_Un_S = 51

Branch to target if unequal or unordered, short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.bne_un_s?view=net-6.0

Box = 140

Convert a boxable value to its boxed form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.box?view=net-6.0

Br = 56

Branch to target.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.br?view=net-6.0

Br_S = 43

Branch to target, short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.br_s?view=net-6.0

Break = 1

Inform a debugger that a breakpoint has been reached.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.break?view=net-6.0

Brfalse = 57

Branch to target if value is zero (false).

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.brfalse?view=net-6.0

Brfalse_S = 44

Branch to target if value is zero (false), short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.brfalse_s?view=net-6.0

Brtrue = 58

Branch to target if value is non-zero (true).

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.brtrue?view=net-6.0

Brtrue_S = 45

Branch to target if value is non-zero (true), short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.brtrue_s?view=net-6.0

Call = 40

Call method described by method.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.call?view=net-6.0

Calli = 41

Call method indicated on the stack with arguments described by a calling convention.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.calli?view=net-6.0

Callvirt = 111

Call a method associated with an object.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.callvirt?view=net-6.0

Castclass = 116

Cast obj to class.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.castclass?view=net-6.0

Ceq = 65025

Push 1 (of type int32) if value1 equals value2, else push 0.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ceq?view=net-6.0

Cgt = 65026

Push 1 (of type int32) if value1 greater that value2, else push 0.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.cgt?view=net-6.0

Cgt_Un = 65027

Push 1 (of type int32) if value1 greater that value2, unsigned or unordered, else push 0.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.cgt_un?view=net-6.0

Ckfinite = 195

Throw ArithmeticException if value is not a finite number.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ckfinite?view=net-6.0

Clt = 65028

Push 1 (of type int32) if value1 lower than value2, else push 0.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.clt?view=net-6.0

Clt_Un = 65029

Push 1 (of type int32) if value1 lower than value2, unsigned or unordered, else push 0.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.clt_un?view=net-6.0

Constrained = 65046

Call a virtual method on a type constrained to be type T.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.constrained?view=net-6.0

Conv_I = 211

Convert to native int, pushing native int on stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_i?view=net-6.0

Conv_I1 = 103

Convert to int8, pushing int32 on stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_i1?view=net-6.0

Conv_I2 = 104

Convert to int16, pushing int32 on stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_i2?view=net-6.0

Conv_I4 = 105

Convert to int32, pushing int32 on stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_i4?view=net-6.0

Conv_I8 = 106

Convert to int64, pushing int64 on stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_i8?view=net-6.0

Conv_Ovf_I = 212

Convert to a native int (on the stack as native int) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_i?view=net-6.0

Conv_Ovf_I1 = 179

Convert to an int8 (on the stack as int32) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_i1?view=net-6.0

Conv_Ovf_I1_Un = 130

Convert unsigned to an int8 (on the stack as int32) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_i1_un?view=net-6.0

Conv_Ovf_I2 = 181

Convert to an int16 (on the stack as int32) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_i2?view=net-6.0

Conv_Ovf_I2_Un = 131

Convert unsigned to an int16 (on the stack as int32) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_i2_un?view=net-6.0

Conv_Ovf_I4 = 183

Convert to an int32 (on the stack as int32) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_i4?view=net-6.0

Conv_Ovf_I4_Un = 132

Convert unsigned to an int32 (on the stack as int32) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_i4_un?view=net-6.0

Conv_Ovf_I8 = 185

Convert to an int64 (on the stack as int64) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_i8?view=net-6.0

Conv_Ovf_I8_Un = 133

Convert unsigned to an int64 (on the stack as int64) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_i8_un?view=net-6.0

Conv_Ovf_I_Un = 138

Convert unsigned to a native int (on the stack as native int) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_i_un?view=net-6.0

Conv_Ovf_U = 213

Convert to a native unsigned int (on the stack as native int) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_u?view=net-6.0

Conv_Ovf_U1 = 180

Convert to an unsigned int8 (on the stack as int32) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_u1?view=net-6.0

Conv_Ovf_U1_Un = 134

Convert unsigned to an unsigned int8 (on the stack as int32) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_u1_un?view=net-6.0

Conv_Ovf_U2 = 182

Convert to an unsigned int16 (on the stack as int32) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_u2?view=net-6.0

Conv_Ovf_U2_Un = 135

Convert unsigned to an unsigned int16 (on the stack as int32) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_u2_un?view=net-6.0

Conv_Ovf_U4 = 184

Convert to an unsigned int32 (on the stack as int32) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_u4?view=net-6.0

Conv_Ovf_U4_Un = 136

Convert unsigned to an unsigned int32 (on the stack as int32) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_u4_un?view=net-6.0

Conv_Ovf_U8 = 186

Convert to an unsigned int64 (on the stack as int64) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_u8?view=net-6.0

Conv_Ovf_U8_Un = 137

Convert unsigned to an unsigned int64 (on the stack as int64) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_u8_un?view=net-6.0

Conv_Ovf_U_Un = 139

Convert unsigned to a native unsigned int (on the stack as native int) and throw an exception on overflow.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_ovf_u_un?view=net-6.0

Conv_R4 = 107

Convert to float32, pushing F on stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_r4?view=net-6.0

Conv_R8 = 108

Convert to float64, pushing F on stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_r8?view=net-6.0

Conv_R_Un = 118

Convert unsigned integer to floating-point, pushing F on stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_r_un?view=net-6.0

Conv_U = 224

Convert to native unsigned int, pushing native int on stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_u?view=net-6.0

Conv_U1 = 210

Convert to unsigned int8, pushing int32 on stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_u1?view=net-6.0

Conv_U2 = 209

Convert to unsigned int16, pushing int32 on stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_u2?view=net-6.0

Conv_U4 = 109

Convert to unsigned int32, pushing int32 on stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_u4?view=net-6.0

Conv_U8 = 110

Convert to unsigned int64, pushing int64 on stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_u8?view=net-6.0

Cpblk = 65047

Copy data from memory to memory.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.cpblk?view=net-6.0

Cpobj = 112

Copy a value type from src to dest.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.cpobj?view=net-6.0

Div = 91

Divide two values to return a quotient or floating-point result.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.div?view=net-6.0

Div_Un = 92

Divide two values, unsigned, returning a quotient.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.div_un?view=net-6.0

Dup = 37

Duplicate the value on the top of the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.dup?view=net-6.0

Endfilter = 65041

End an exception handling filter clause.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.endfilter?view=net-6.0

Endfinally = 220

End finally clause of an exception block.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.endfinally?view=net-6.0

Initblk = 65048

Set all bytes in a block of memory to a given byte value.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.initblk?view=net-6.0

Initobj = 65045

Initialize the value at address dest.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.initobj?view=net-6.0

Isinst = 117

Test if obj is an instance of class, returning null or an instance of that class or interface.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.isinst?view=net-6.0

Jmp = 39

Exit current method and jump to the specified method.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.jmp?view=net-6.0

Ldarg = 65033

Load argument onto the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldarg?view=net-6.0

Ldarg_0 = 2

Load argument 0 onto the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldarg_0?view=net-6.0

Ldarg_1 = 3

Load argument 1 onto the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldarg_1?view=net-6.0

Ldarg_2 = 4

Load argument 2 onto the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldarg_2?view=net-6.0

Ldarg_3 = 5

Load argument 3 onto the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldarg_3?view=net-6.0

Ldarg_S = 14

Load argument onto the stack, short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldarg_s?view=net-6.0

Ldarga = 65034

Fetch the address of the argument indexed.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldarga?view=net-6.0

Ldarga_S = 15

Fetch the address of argument, short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldarga_s?view=net-6.0

Ldc_I4 = 32

Push num of type int32 onto the stack as int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldc_i4?view=net-6.0

Ldc_I4_0 = 22

Push 0 onto the stack as int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldc_i4_0?view=net-6.0

Ldc_I4_1 = 23

Push 1 onto the stack as int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldc_i4_1?view=net-6.0

Ldc_I4_2 = 24

Push 2 onto the stack as int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldc_i4_2?view=net-6.0

Ldc_I4_3 = 25

Push 3 onto the stack as int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldc_i4_3?view=net-6.0

Ldc_I4_4 = 26

Push 4 onto the stack as int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldc_i4_4?view=net-6.0

Ldc_I4_5 = 27

Push 5 onto the stack as int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldc_i4_5?view=net-6.0

Ldc_I4_6 = 28

Push 6 onto the stack as int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldc_i4_6?view=net-6.0

Ldc_I4_7 = 29

Push 7 onto the stack as int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldc_i4_7?view=net-6.0

Ldc_I4_8 = 30

Push 8 onto the stack as int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldc_i4_8?view=net-6.0

Ldc_I4_M1 = 21

Push -1 onto the stack as int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldc_i4_m1?view=net-6.0

Ldc_I4_S = 31

Push num onto the stack as int32, short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldc_i4_s?view=net-6.0

Ldc_I8 = 33

Push num of type int64 onto the stack as int64.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldc_i8?view=net-6.0

Ldc_R4 = 34

Push num of type float32 onto the stack as F.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldc_r4?view=net-6.0

Ldc_R8 = 35

Push num of type float64 onto the stack as F.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldc_r8?view=net-6.0

Ldelem = 163

Load the element at index onto the top of the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldelem?view=net-6.0

Ldelem_I = 151

Load the element with type native int at index onto the top of the stack as a native int.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldelem_i?view=net-6.0

Ldelem_I1 = 144

Load the element with type int8 at index onto the top of the stack as an int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldelem_i1?view=net-6.0

Ldelem_I2 = 146

Load the element with type int16 at index onto the top of the stack as an int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldelem_i2?view=net-6.0

Ldelem_I4 = 148

Load the element with type int32 at index onto the top of the stack as an int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldelem_i4?view=net-6.0

Ldelem_I8 = 150

Load the element with type signed or unsigned int64 at index onto the top of the stack as a signed int64.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldelem_i8?view=net-6.0

Ldelem_R4 = 152

Load the element with type float32 at index onto the top of the stack as an F.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldelem_r4?view=net-6.0

Ldelem_R8 = 153

Load the element with type float64 at index onto the top of the stack as an F.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldelem_r8?view=net-6.0

Ldelem_Ref = 154

Load the element at index onto the top of the stack as an O. The type of the O is the same as the element type of the array pushed on the CIL stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldelem_ref?view=net-6.0

Ldelem_U1 = 145

Load the element with type unsigned int8 at index onto the top of the stack as an int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldelem_u1?view=net-6.0

Ldelem_U2 = 147

Load the element with type unsigned int16 at index onto the top of the stack as an int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldelem_u2?view=net-6.0

Ldelem_U4 = 149

Load the element with type unsigned int32 at index onto the top of the stack as an int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldelem_u4?view=net-6.0

Ldelema = 143

Load the address of element at index onto the top of the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldelema?view=net-6.0

Ldfld = 123

Push the value of field of object (or value type) obj, onto the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldfld?view=net-6.0

Ldflda = 124

Push the address of field of object obj on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldflda?view=net-6.0

Ldftn = 65030

Push a pointer to a method referenced by method, on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldftn?view=net-6.0

Ldind_I = 77

Indirect load value of type native int as native int on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldind_i?view=net-6.0

Ldind_I1 = 70

Indirect load value of type int8 as int32 on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldind_i1?view=net-6.0

Ldind_I2 = 72

Indirect load value of type int16 as int32 on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldind_i2?view=net-6.0

Ldind_I4 = 74

Indirect load value of type int32 as int32 on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldind_i4?view=net-6.0

Ldind_I8 = 76

Indirect load value of type signed or unsigned int64 as signed int64 on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldind_i8?view=net-6.0

Ldind_R4 = 78

Indirect load value of type float32 as F on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldind_r4?view=net-6.0

Ldind_R8 = 79

Indirect load value of type float64 as F on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldind_r8?view=net-6.0

Ldind_Ref = 80

Indirect load value of type object ref as O on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldind_ref?view=net-6.0

Ldind_U1 = 71

Indirect load value of type unsigned int8 as int32 on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldind_u1?view=net-6.0

Ldind_U2 = 73

Indirect load value of type unsigned int16 as int32 on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldind_u2?view=net-6.0

Ldind_U4 = 75

Indirect load value of type unsigned int32 as int32 on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldind_u4?view=net-6.0

Ldlen = 142

Push the length (of type native unsigned int) of array on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldlen?view=net-6.0

Ldloc = 65036

Load local variable of index onto stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldloc?view=net-6.0

Ldloc_0 = 6

Load local variable 0 onto stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldloc_0?view=net-6.0

Ldloc_1 = 7

Load local variable 1 onto stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldloc_1?view=net-6.0

Ldloc_2 = 8

Load local variable 2 onto stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldloc_2?view=net-6.0

Ldloc_3 = 9

Load local variable 3 onto stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldloc_3?view=net-6.0

Ldloc_S = 17

Load local variable of index onto stack, short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldloc_s?view=net-6.0

Ldloca = 65037

Load address of local variable with index index.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldloca?view=net-6.0

Ldloca_S = 18

Load address of local variable with index, short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldloca_s?view=net-6.0

Ldnull = 20

Push a null reference on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldnull?view=net-6.0

Ldobj = 113

Copy the value stored at address src to the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldobj?view=net-6.0

Ldsfld = 126

Push the value of the static field on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldsfld?view=net-6.0

Ldsflda = 127

Push the address of the static field, field, on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldsflda?view=net-6.0

Ldstr = 114

Push a string object for the literal string.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldstr?view=net-6.0

Ldtoken = 208

Convert metadata token to its runtime representation.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldtoken?view=net-6.0

Ldvirtftn = 65031

Push address of virtual method on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldvirtftn?view=net-6.0

Leave = 221

Exit a protected region of code.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.leave?view=net-6.0

Leave_S = 222

Exit a protected region of code, short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.leave_s?view=net-6.0

Localloc = 65039

Allocate space from the local memory pool.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.localloc?view=net-6.0

Mkrefany = 198

Push a typed reference to ptr of type class onto the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.mkrefany?view=net-6.0

Mul = 90

Multiply values.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.mul?view=net-6.0

Mul_Ovf = 216

Multiply signed integer values. Signed result shall fit in same size.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.mul_ovf?view=net-6.0

Mul_Ovf_Un = 217

Multiply unsigned integer values. Unsigned result shall fit in same size.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.mul_ovf_un?view=net-6.0

Neg = 101

Negate value.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.neg?view=net-6.0

Newarr = 141

Create a new array with elements of type etype.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.newarr?view=net-6.0

Newobj = 115

Allocate an uninitialized object or value type and call ctor.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.newobj?view=net-6.0

Nop = 0

Do nothing (No operation).

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.nop?view=net-6.0

Not = 102

Bitwise complement (logical not).

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.not?view=net-6.0

Or = 96

Bitwise OR of two integer values, returns an integer.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.or?view=net-6.0

Pop = 38

Pop value from the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.pop?view=net-6.0

Prefix1 = 254

This prefix opcode is reserved and currently not implemented in the runtime

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.prefix1?view=net-6.0

Prefix2 = 253

This prefix opcode is reserved and currently not implemented in the runtime

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.prefix2?view=net-6.0

Prefix3 = 252

This prefix opcode is reserved and currently not implemented in the runtime

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.prefix3?view=net-6.0

Prefix4 = 251

This prefix opcode is reserved and currently not implemented in the runtime

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.prefix4?view=net-6.0

Prefix5 = 250

This prefix opcode is reserved and currently not implemented in the runtime

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.prefix5?view=net-6.0

Prefix6 = 249

This prefix opcode is reserved and currently not implemented in the runtime

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.prefix6?view=net-6.0

Prefix7 = 248

This prefix opcode is reserved and currently not implemented in the runtime

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.prefix7?view=net-6.0

Prefixref = 255

This prefix opcode is reserved and currently not implemented in the runtime

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.prefixref?view=net-6.0

Readonly = 65054

Specify that the subsequent array address operation performs no type check at runtime, and that it returns a controlled-mutability managed pointer.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.readonly?view=net-6.0

Refanytype = 65053

Push the type token stored in a typed reference.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.refanytype?view=net-6.0

Refanyval = 194

Push the address stored in a typed reference.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.refanyval?view=net-6.0

Rem = 93

Remainder when dividing one value by another.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.rem?view=net-6.0

Rem_Un = 94

Remainder when dividing one unsigned value by another.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.rem_un?view=net-6.0

Ret = 42

Return from method, possibly with a value.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ret?view=net-6.0

Rethrow = 65050

Rethrow the current exception.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.rethrow?view=net-6.0

Shl = 98

Shift an integer left (shifting in zeros), return an integer.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.shl?view=net-6.0

Shr = 99

Shift an integer right (shift in sign), return an integer.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.shr?view=net-6.0

Shr_Un = 100

Shift an integer right (shift in zero), return an integer.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.shr_un?view=net-6.0

Sizeof = 65052

Push the size, in bytes, of a type as an unsigned int32.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.sizeof?view=net-6.0

Starg = 65035

Store value to the argument.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.starg?view=net-6.0

Starg_S = 16

Store value to the argument numbered, short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.starg_s?view=net-6.0

Stelem = 164

Replace array element at index with the value on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stelem?view=net-6.0

Stelem_I = 155

Replace array element at index with the i value on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stelem_i?view=net-6.0

Stelem_I1 = 156

Replace array element at index with the int8 value on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stelem_i1?view=net-6.0

Stelem_I2 = 157

Replace array element at index with the int16 value on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stelem_i2?view=net-6.0

Stelem_I4 = 158

Replace array element at index with the int32 value on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stelem_i4?view=net-6.0

Stelem_I8 = 159

Replace array element at index with the int64 value on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stelem_i8?view=net-6.0

Stelem_R4 = 160

Replace array element at index with the float32 value on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stelem_r4?view=net-6.0

Stelem_R8 = 161

Replace array element at index with the float64 value on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stelem_r8?view=net-6.0

Stelem_Ref = 162

Replace array element at index with the ref value on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stelem_ref?view=net-6.0

Stfld = 125

Replace the value of field of the object obj with value.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stfld?view=net-6.0

Stind_I = 223

Store value of type native int into memory at address.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stind_i?view=net-6.0

Stind_I1 = 82

Store value of type int8 into memory at address.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stind_i1?view=net-6.0

Stind_I2 = 83

Store value of type int16 into memory at address.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stind_i2?view=net-6.0

Stind_I4 = 84

Store value of type int32 into memory at address.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stind_i4?view=net-6.0

Stind_I8 = 85

Store value of type int64 into memory at address.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stind_i8?view=net-6.0

Stind_R4 = 86

Store value of type float32 into memory at address.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stind_r4?view=net-6.0

Stind_R8 = 87

Store value of type float64 into memory at address.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stind_r8?view=net-6.0

Stind_Ref = 81

Store value of type object ref (type O) into memory at address.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stind_ref?view=net-6.0

Stloc = 65038

Pop a value from stack into local variable index.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stloc?view=net-6.0

Stloc_0 = 10

Pop a value from stack into local variable 0.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stloc_0?view=net-6.0

Stloc_1 = 11

Pop a value from stack into local variable 1.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stloc_1?view=net-6.0

Stloc_2 = 12

Pop a value from stack into local variable 2.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stloc_2?view=net-6.0

Stloc_3 = 13

Pop a value from stack into local variable 3.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stloc_3?view=net-6.0

Stloc_S = 19

Pop a value from stack into local variable with index, short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stloc_s?view=net-6.0

Stobj = 129

Store a value at an address.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stobj?view=net-6.0

Stsfld = 128

Replace the value of the static field.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stsfld?view=net-6.0

Sub = 89

Subtract value2 from value1, returning a new value.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.sub?view=net-6.0

Sub_Ovf = 218

Subtract native int from a native int. Signed result shall fit in same size.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.sub_ovf?view=net-6.0

Sub_Ovf_Un = 219

Subtract native unsigned int from a native unsigned int. Unsigned result shall fit in same size.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.sub_ovf_un?view=net-6.0

Switch = 69

Jump to one of n values.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.switch?view=net-6.0

Tailcall = 65044

Subsequent call terminates current method.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.tailcall?view=net-6.0

Throw = 122

Throw an exception.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.throw?view=net-6.0

Unaligned = 65042

Subsequent pointer instruction might be unaligned.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.unaligned?view=net-6.0

Unbox = 121

Extract a value-type from obj, its boxed representation, and push a controlled-mutability managed pointer to it to the top of the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.unbox?view=net-6.0

Unbox_Any = 165

Extract a value-type from obj, its boxed representation, and copy to the top of the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.unbox_any?view=net-6.0

Volatile = 65043

Subsequent pointer reference is volatile.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.volatile?view=net-6.0

Xor = 97

Bitwise XOR of integer values, returns an integer.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.xor?view=net-6.0

Remarks