PropertyInfo类上的GetValue,GetConstantValue和GetRawConstantValue方法有什么区别?不幸的是,MSDN文档不是很清楚.
解决方法
GetConstantValue和GetRawConstantValue都适用于文字(在字段的情况下为const,但在语义上它可以应用于不仅仅是字段) – 不同于GetValue,它将在运行时获取某些东西的实际值,通过GetConstantValue或GetRawConstantValue)不依赖于运行时 – 它是直接从元数据.
那么我们得到GetConstantValue和GetRawConstantValue之间的区别.基本上,后者是更直接和原始的形式.这主要针对枚举成员;例如 – 如果我有一个:
enum Foo { A = 1,B = 2 } ... const Foo SomeValue = Foo.B;
那么SomeValue的GetConstantValue是Foo.B;但是,SomeValue的GetRawConstantValue值为2.特别地,如果您使用的是仅反射上下文,则不能使用GetConstantValue,因为这将需要将值绑定到Foo,这在使用仅反射时不能执行.