jjzjj

GetRawConstantValue

全部标签

c# - GetValue、GetConstantValue 和 GetRawConstantValue 之间的区别

PropertyInfo类的GetValue、GetConstantValue和GetRawConstantValue方法有什么区别?不幸的是,MSDN文档在这个主题上不是很清楚。 最佳答案 GetConstantValue和GetRawConstantValue都旨在与文字一起使用(在字段的情况下考虑const,但语义它不仅可以应用于字段)-与GetValue不同,它会在运行时获取某物的实际值,一个常量值(通过GetConstantValue或GetRawConstantValue)不依赖于运行时-它直接来自元数据。那么我们就了解