c# – GetValue,GetConstantValue和GetRawConstantValue之间的区
发布时间:2020-12-15 06:47:55 所属栏目:百科 来源:网络整理
导读:PropertyInfo类上的GetValue,GetConstantValue和GetRawConstantValue方法有什么区别?不幸的是,MSDN文档不是很清楚. 解决方法 GetConstantValue和GetRawConstantValue都适用于文字(在字段的情况下为const,但在语义上它可以应用于不仅仅是字段) – 不同于GetV
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,这在使用仅反射时不能执行. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |