c# 遍历一个对象里面的全部属性

比如我现在有一个Student的对象,里面有属性stuName,stuAge,stuGender,我现在该怎么写循环才能遍历这几个属性?

 

 

Student s=new......
foreach (System.Reflection.PropertyInfo p in s.GetType().GetProperties())
{
Console.WriteLine("Name:{0} Value:{1}", p.Name, p.GetValue(s));
}



转载至左正
posted @ 2017-10-09 17:03  超级芒果  阅读(1508)  评论(0编辑  收藏  举报