System.Reflection.MemberTypes.cs

ylbtech-System.Reflection.MemberTypes.cs
1.返回顶部
1、
#region 程序集 mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
// C:Program Files (x86)Reference AssembliesMicrosoftFramework.NETFrameworkv4.6.1mscorlib.dll
#endregion

using System.Runtime.InteropServices;

namespace System.Reflection
{
    //
    // 摘要:
    //     标记被定义为 System.Reflection.MemberInfo 的派生类的每种成员类型。
    [ComVisible(true)]
    [Flags]
    public enum MemberTypes
    {
        //
        // 摘要:
        //     指定该成员是构造函数
        Constructor = 1,
        //
        // 摘要:
        //     指定该成员是事件。
        Event = 2,
        //
        // 摘要:
        //     指定该成员是字段。
        Field = 4,
        //
        // 摘要:
        //     指定该成员是方法。
        Method = 8,
        //
        // 摘要:
        //     指定该成员是属性。
        Property = 16,
        //
        // 摘要:
        //     指定该成员是类型。
        TypeInfo = 32,
        //
        // 摘要:
        //     指定该成员是自定义成员类型。
        Custom = 64,
        //
        // 摘要:
        //     指定该成员是嵌套类型。
        NestedType = 128,
        //
        // 摘要:
        //     指定所有成员类型。
        All = 191
    }
}
2、
2.返回顶部
 
3.返回顶部
 
4.返回顶部
 
5.返回顶部
 
 
6.返回顶部
 
warn 作者:ylbtech
出处:http://ylbtech.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
原文地址:https://www.cnblogs.com/storebook/p/12676623.html