經過反射的方式獲取類型中的全部屬性

  • 解決方案
     經過反射的方式獲取類型中的全部屬性。
  • 引用命名空間
 using System.Reflection;
  • 實體類
  public class User
  {
        private string id;
        public string Id { get { return id; } set { id = value; } }

        private string name;
        public string Name { get { return name; } set { name = value; } }
  }
  • 獲取方法
   private PropertyInfo[] GetPropertyInfoArray()
   {
        PropertyInfo[] props = null;
        try
        {
             Type type = typeof(User);
             object obj = Activator.CreateInstance(type);
             props = type.GetProperties(BindingFlags.Public | BindingFlags.Instance);
        }
        catch (Exception ex)
        { }
        return props;
   }轉自:http://www.cnblogs.com/liusuqi/p/3171963.html
相關文章
相關標籤/搜索