C#怎么利用反射来获取一个对象的 所有Attribute?

求一个简单的例子。... 求一个简单的例子。 展开
 我来答
obpt123
推荐于2018-03-28 · 超过17用户采纳过TA的回答
知道答主
回答量:54
采纳率:100%
帮助的人:29.5万
展开全部

首先要获取对象的类型,根据类型再获取Attribute,同一类型的对象获取到的Attribute是相同的。

        static void Main(string[] args)
        {
            Type ty=typeof(System.Windows.Forms.Button);
            foreach (Attribute attribute in ty.GetCustomAttributes(true))
            { 
                Console.WriteLine(attribute);
            }
            Console.Read();
        }

上述代码的结果如下:

System.Runtime.InteropServices.ComVisibleAttribute

System.Runtime.InteropServices.ClassInterfaceAttribute

System.Windows.Forms.SRDescriptionAttribute

System.ComponentModel.DesignerAttribute

System.ComponentModel.DesignerAttribute

System.Windows.Forms,Allow

System.ComponentModel.DefaultPropertyAttribute

System.ComponentModel.DefaultEventAttribute

System.ComponentModel.DesignerAttribute

System.ComponentModel.Design.Serialization.DesignerSerializerAttribute

System.ComponentModel.DesignerCategoryAttribute

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式