// OperandType.cs // // (C) 2001 Ximian, Inc. http://www.ximian.com namespace System.Reflection.Emit { /// /// Describes the operand types of MSIL instructions. /// public enum OperandType { /// /// InlineBrTarget = 0, /// /// InlineField = 1, /// /// InlineI = 2, /// /// InlineI8 = 3, /// /// InlineMethod = 4, /// /// InlineNone = 5, /// /// InlinePhi = 6, /// /// InlineR = 7, /// /// InlineSig = 9, /// /// InlineString = 0x0A, /// /// InlineSwitch = 0x0B, /// /// InlineTok = 0x0C, /// /// InlineType = 0x0D, /// /// InlineVar = 0x0E, /// /// ShortInlineBrTarget = 0x0F, /// /// ShortInlineI = 0x10, /// /// ShortInlineR = 0x11, /// /// ShortInlineVar = 0x12 } }