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

C#获取类属性

时间:2017-10-04 15:51:56      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:info   for   reac   str   foreach   nbsp   bsp   string   each   

 

C#获取类属性

Type t = fxsinfo.GetType();
PropertyInfo[] PropertyList = t.GetProperties();
foreach (PropertyInfo item in PropertyList)
{
string name = item.Name;
object value = item.GetValue(fxsinfo, null);
data.Add(name, value.AsString());
}

C#获取类属性

标签:info   for   reac   str   foreach   nbsp   bsp   string   each   

原文地址:http://www.cnblogs.com/a735882640/p/7625634.html

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