C#
9527-早
这个作者很懒,什么都没留下…
展开
-
C#反射调用类中的私有方法
很所时候,我们在看API的时候,某个类中有个很好的方法,但是是私有的,我们没办法直接用,在这里给大家提供一个采用反射的方法去调用类中私有方法的示例: Type type = app.GetType(); BindingFlags flags = BindingFlags.NonPublic | BindingFlags.Instanc...原创 2018-08-09 09:43:25 · 4996 阅读 · 0 评论 -
C#反射获取属性的名称
abstract class AbstractGetValue { public object GetValue(string propertyName) { return this.GetType().GetProperty(propertyName).GetValue(this, null); } } class Person : Abstr...原创 2017-11-20 17:59:22 · 1908 阅读 · 0 评论