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

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

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

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

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

Beq = 59

Branch to target if equal.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.beq

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

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

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

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

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

Bgt = 61

Branch to target if greater than.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.bgt

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

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

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

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

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

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

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

Blt = 63

Branch to target if less than.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.blt

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

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

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

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

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

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

Br = 56

Branch to target.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.br

Br_S = 43

Branch to target, short form.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.br_s

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

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

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

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

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

Call = 40

Call method described by method.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.call

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

Callvirt = 111

Call a method associated with an object.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.callvirt

Castclass = 116

Cast obj to class.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.castclass

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Cpblk = 65047

Copy data from memory to memory.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.cpblk

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

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

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

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

Endfilter = 65041

End an exception handling filter clause.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.endfilter

Endfinally = 220

End finally clause of an exception block.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.endfinally

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

Initobj = 65045

Initialize the value at address dest.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.initobj

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

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

Ldarg = 65033

Load argument onto the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldarg

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

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

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

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

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

Ldarga = 65034

Fetch the address of the argument indexed.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldarga

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Ldloc = 65036

Load local variable of index onto stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldloc

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

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

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

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

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

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

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

Ldnull = 20

Push a null reference on the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldnull

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

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

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

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

Ldtoken = 208

Convert metadata token to its runtime representation.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ldtoken

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

Leave = 221

Exit a protected region of code.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.leave

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

Localloc = 65039

Allocate space from the local memory pool.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.localloc

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

Mul = 90

Multiply values.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.mul

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

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

Neg = 101

Negate value.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.neg

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

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

Nop = 0

Do nothing (No operation).

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.nop

Not = 102

Bitwise complement (logical not).

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.not

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

Pop = 38

Pop value from the stack.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.pop

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

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

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

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

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

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

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

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

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

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

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

Rem = 93

Remainder when dividing one value by another.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.rem

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

Ret = 42

Return from method, possibly with a value.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.ret

Rethrow = 65050

Rethrow the current exception.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.rethrow

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

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

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

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

Starg = 65035

Store value to the argument.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.starg

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Stobj = 129

Store a value at an address.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stobj

Stsfld = 128

Replace the value of the static field.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.stsfld

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

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

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

Switch = 69

Jump to one of n values.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.switch

Tailcall = 65044

Subsequent call terminates current method.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.tailcall

Throw = 122

Throw an exception.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.throw

Unaligned = 65042

Subsequent pointer instruction might be unaligned.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.unaligned

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

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

Volatile = 65043

Subsequent pointer reference is volatile.

See also: https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.volatile

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

Remarks