DekGenius.com
[ Team LiB ] Previous Section Next Section

OperandTypeserializable

System.Reflection.Emit (mscorlib.dll)enum

This enumeration specifies the operand type of an MSIL OpCode, which is provided through the OpCode.OperandType property. Operands include tokens (InlineField, InlineMethod, InlineType, and InlineTok) and integers (InlineI8, InlineI8, ShortInlineI, and ShortInlineR).

public enum OperandType {
   InlineBrTarget = 0,
   InlineField = 1,
   InlineI = 2,
   InlineI8 = 3,
   InlineMethod = 4,
   InlineNone = 5,
   InlinePhi = 6,
   InlineR = 7,
   InlineSig = 9,
   InlineString = 10,
   InlineSwitch = 11,
   InlineTok = 12,
   InlineType = 13,
   InlineVar = 14,
   ShortInlineBrTarget = 15,
   ShortInlineI = 16,
   ShortInlineR = 17,
   ShortInlineVar = 18
}

Hierarchy

System.Object System.ValueType System.Enum(System.IComparable, System.IFormattable, System.IConvertible) OperandType

Returned By

OpCode.OperandType

    [ Team LiB ] Previous Section Next Section