摘要: using System.Reflection; Type t = obj.GetType();//获得该类的Type foreach (PropertyInfo pi in t.GetProperties()){ var name = pi.Name;//获得属性的名字,后面就可以根据名字判断来进 阅读全文
posted @ 2018-12-11 15:54 DerekHan 阅读(13640) 评论(0) 推荐(2) 编辑