Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Sealed class: RT.Util.IL.Instruction

Summary

Describes an IL instruction in a method.

Constructors

Instruction(int startOffset, OpCode opCode, object operand)
Constructs an instance representing an IL instruction.

Instance methods

string
  • Overrides: object.ToString()
Returns a string representation of this object.

Instance properties

OpCodeThe opcode of the instruction.
objectThe operand. Depending on the Instruction.OpCode, this may be a FieldInfo, MethodBase, Type, byte, short, int, long, string, float, double, or null. In the case of the switch instruction, it is an int[].
intThe byte offset at which this instruction starts.