欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C#遍历类的所有属性,遍历list集合的所有属性

程序员文章站 2022-06-05 08:05:09
...
                student aa= new student();
                Type type = 标题.GetType();
                PropertyInfo[] propertyInfos = type.GetProperties();  
                List<string> heads = new List<string>();
                foreach (var item in propertyInfos)
                { 
                    heads.Add(item.Name);//将属性添加到集合里
                }


public  class student{
    public string id{get;set;}
    public string name{get;set;}
    public string sex{get;set;}
    public string age{get;set;}


}