首页 新闻 会员 周边

BCL里有Property这个类吗

0
悬赏园豆:10 [已关闭问题] 解决于 2013-10-29 10:01

我看到有大虾写过的一个扩展类,BCL里有Property这个类吗,求解答。

public static class PropertyExtension

{

public static object GetValueByName(this object self, string propertyName)

{

if (self == null)

{

return self ;

}

Type t = self.GetType();

PropertyInfo p = t.GetProperty(propertyName);

return p.GetValue(self, null);

}

}

HorsonJin的主页 HorsonJin | 初学一级 | 园豆:158
提问于:2013-10-25 18:49
< >
分享
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册