码迷,mamicode.com
首页 > Windows程序 > 详细

C# 反射 获取类的所有属性

时间:2020-04-21 13:29:08      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:str   void   write   set   stat   reac   src   图片   ima   

结论:默认情况遍历属性时,是不会遍历到静态成员的。

测试代码:

public class Class11
{
    public void test1()
    {
        c1 model = new c1();
        model.name = "name1";

        Type t = model.GetType();
        PropertyInfo[] pArray = t.GetProperties();
        Array.ForEach<PropertyInfo>(pArray, p =>
        {
            Console.WriteLine(p.Name);
        });
    }

    public class c1
    {
        public static string StrIds = "12333";//这个字段 反射时不会遍历到
        public string name { get; set; }
    }
}

输出的结果:

技术图片

C# 反射 获取类的所有属性

标签:str   void   write   set   stat   reac   src   图片   ima   

原文地址:https://www.cnblogs.com/guxingy/p/12743581.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!