码迷,mamicode.com
首页 > 其他好文 > 详细

反射原理读取对象属性并设置属性值

时间:2014-08-13 18:14:36      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:des   blog   io   for   ar   cti   div   log   

 Dictionary<string, string> dicNodes = new Dictionary<string, string>();
       foreach (XmlNode node in nodes.ChildNodes)
       {
           if (node.NodeType==XmlNodeType.Element)
           {
             
              dicNodes.Add(node.Attributes["name"].Value,node.Attributes["value"].Value);
           }
       }
        tb_b_employee Employee = new tb_b_employee();

        Type type = Employee.GetType();
       //取得属性集合
       PropertyInfo[] pi = type.GetProperties();
       foreach (PropertyInfo item in pi)
       {
           //给属性赋值
           if (dicNodes[item.Name] != null)
           {
               item.SetValue(Employee,dicNodes[item.Name], null);
           }
       }

  

反射原理读取对象属性并设置属性值,布布扣,bubuko.com

反射原理读取对象属性并设置属性值

标签:des   blog   io   for   ar   cti   div   log   

原文地址:http://www.cnblogs.com/liang-ling/p/3910449.html

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