我看到有大虾写过的一个扩展类,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 回答
- 0 关注
- 470 浏览
添加回答
举报
0/150
提交
取消