File: system\reflection\emit\operandtype.cs
Project: ndp\clr\src\bcl\mscorlib.csproj (mscorlib)
// ==++==
// 
//   Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// ==--==
/*============================================================
**
**Class: OperandType
** 
** <OWNER>WESU</OWNER>
**
**Purpose: Exposes OperandType Attribute of IL .
**
** THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT BY HAND!
** See clr\src\inc\opcodegen.pl for more information.**
============================================================*/
namespace System.Reflection.Emit {
 
using System;
 
[Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum OperandType
{
 
    InlineBrTarget  = 0,
    InlineField     = 1,
    InlineI         = 2,
    InlineI8        = 3,
    InlineMethod    = 4,
    InlineNone      = 5,
#if !FEATURE_CORECLR
    /// <internalonly/>
    [Obsolete("This API has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202")]
    InlinePhi       = 6,
#endif
    InlineR         = 7,
    InlineSig       = 9,
    InlineString    = 10,
    InlineSwitch    = 11,
    InlineTok       = 12,
    InlineType      = 13,
    InlineVar       = 14,
    ShortInlineBrTarget = 15,
    ShortInlineI    = 16,
    ShortInlineR    = 17,
    ShortInlineVar  = 18,
}
}