我一直试图尝试反思,我有一个问题.
假设我有一个类,在这个类中,我有一个属性,使用c#6.0的新功能进行了初始化
Class MyClass() { public string SomeProperty{ get; set; } = "SomeValue"; }
有没有办法通过反思获得这个价值,而无需启动课程?
我知道我能做到这一点;
var foo= new MyClass(); var value = foo.GetType().GetProperty("SomeProperty").GetValue(foo);
但我想做的是与此类似的事情;
typeof(MyClass).GetProperty("SomeProperty").GetValue();
我知道我可以用一个字段来获取价值.但它需要是一个财产.
谢谢.
解决方法
这只是一种语法糖.
这个:
这个:
class MyClass() { public string SomeProperty{ get; set; } = "SomeValue"; }
将被编译器打包到:
class MyClass() { public MyClass() { _someProperty = "SomeValue"; } // actually,backing field name will be different,// but it doesn't matter for this question private string _someProperty; public string SomeProperty { get { return _someProperty; } set { _someProperty = value; } } }
反思是关于元数据. Metatada中没有任何“SomeValue”存储.您所能做的就是以常规方式阅读房产价值.
I know I could use a field to get the value