C#利用反射获取对象属性值

public static string GetObjectPropertyValue<T>(T t, string propertyname)
{
     Type type = typeof(T);

      PropertyInfo property = type.GetProperty(propertyname);

      if (property == null) return string.Empty;

      object o = property.GetValue(t, null);

      if (o == null) return string.Empty;
      return o.ToString();
}

 获取属性列表

 
Type t = typeof(Sit_showcase);
System.Reflection.PropertyInfo[] properties = t.GetProperties();

foreach (System.Reflection.PropertyInfo info in properties)
  {
       Response.Write("name=" + info.Name + ";" + "type=" + info.PropertyType.Name + ";value=" + GetObjectPropertyValue<Sit_showcase>(showcase, info.Name) + "<br />");
}

 

posted @ 2016-03-10 20:15  microsoftzhcn  阅读(2023)  评论(1编辑  收藏  举报