首页 > 其他 > 详细

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

时间:2014-07-01 20:30:01      阅读:296      评论:0      收藏:0      [点我收藏+]

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();
}

C#利用反射获取对象属性值,布布扣,bubuko.com

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

原文:http://www.cnblogs.com/goulash/p/3817012.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!