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

C# 反射遍历对象

时间:2014-08-21 14:43:24      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   ar   div   

 

在项目中需要遍历各种对象,可以通过如下方法遍历。

        /// <summary>
        /// 返回对象字符串
        /// </summary>
        /// <param name="obj"></param>
        /// <returns></returns>
        public string ReturnString(object obj)
        {
            StringBuilder str = new StringBuilder();
            foreach (System.Reflection.PropertyInfo p in obj.GetType().GetProperties())
            {

                str.Append(string.Format("\tName:{0} Value:{1}\r\n", p.Name, p.GetValue(obj, null)));
            }

            return str.ToString(); ;

        }

 

C# 反射遍历对象,布布扣,bubuko.com

C# 反射遍历对象

标签:style   blog   color   os   io   for   ar   div   

原文地址:http://www.cnblogs.com/PLifeCopyDown/p/3927027.html

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