File: system\runtime\interopservices\commembertype.cs
Project: ndp\clr\src\bcl\mscorlib.csproj (mscorlib)
// ==++==
// 
//   Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// ==--==
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
namespace System.Runtime.InteropServices {
 
    using System;
 
    [Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
    public enum ComMemberType
    {
        Method              = 0,
        PropGet             = 1,
        PropSet             = 2
    }
}