为了账号安全,请及时绑定邮箱和手机立即绑定

BCL里有Property这个类吗

BCL里有Property这个类吗

C#
幕布斯7119047 2018-12-13 05:02:52
我看到有大虾写过的一个扩展类,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);}}
查看完整描述

2 回答

?
Helenr

TA贡献1780条经验 获得超4个赞

有PropertyInfo  

Property没有。

要看到扩展点在object  所以 所有的类都有了这个扩展方法。


查看完整回答
反对 回复 2018-12-18
?
呼唤远方

TA贡献1856条经验 获得超11个赞

C# 中是没有Property这个类的 PropertyInfo 这个类倒是有

查看完整回答
反对 回复 2018-12-18
  • 2 回答
  • 0 关注
  • 470 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信