您的位置:首页 > 移动开发 > Objective-C

C#如何获取object对象的属性值(type反射)

2014-03-13 10:19 513 查看
/// <summary>

///
获取一个类指定的属性值

///
</summary>

///
<param name="info">object对象</param>

///
<param name="field">属性名称</param>

///
<returns></returns>

public
static object GetPropertyValue(object info, string field)

{

if
(info == null) return null;

Type
t = info.GetType();

IEnumerable<System.Reflection.PropertyInfo>
property = from pi in t.GetProperties() where pi.Name.ToLower() == field.ToLower() select pi;

return
property.First().GetValue(info, null);

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: