Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 windbg,有没有办法查看在实例上定义的所有自定义属性?(在班级级别) 如果可能的话,我可以在自定义属性中看到字段值吗?
实际上,您可以通过反射看到新发出的属性。您可以使用 IMetaDataEmit::DefineCustomAttribute 像您一样发出新属性,然后通过反射检查它们的存在。我使用该技术来分析我的单元测试并成功检查了我的属性是否已发出(在程序集和类型级别)。我猜微软修复了你提到的错误(如果有的话)。