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

C# 获取传入对象的所有属性名称

时间:2015-05-05 19:37:30      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:

C# 获取传入对象的所有属性名称




 prolist p1 = new prolist();
             List<String> lt = getattr<prolist>(p1); 
//使用泛型,返回传入对象的属性,名称
public List<String> getattr<T>( T dx )
        {
            List<String> ls = new List<String>();
            Type types = dx.GetType();
            foreach (var p in types.GetProperties())
            {
             //   p.PropertyType
                ls.Add(p.Name);
            }
            return ls;


        }
    }
//实体对象
    public class prolist
    {
        private string _pid = "0";
        private string _pmoney = "0";
        public string pid
        {
            set { this._pid = value; }
            get { return this._pid; }
        }




        public string pmoney
        {
            set { this._pmoney = value; }
            get { return this._pmoney; }
        }
    }

C# 获取传入对象的所有属性名称

标签:

原文地址:http://blog.csdn.net/wangzhiqiang123456/article/details/45506019

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