pdb 是否提供有关源文件中类型定义的信息?
我了解 DIA api、dbghelp。 但是我可以使用它们从我的程序集和生成的 pdb 中提取类型定义位置信息,例如文件、begin_line、begin_column、end_line、end_column 吗?
如果答案是肯定的,有人可以给我指出一个简单的例子吗?
I know about DIA api, dbghelp. But can i use them to extract type definition location info such as file, begin_line, begin_column, end_line, end_column from my assembly and pdb generated?
If the answer is yes, can someone point me to the simple example out there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以查看 codeplex 上的通用编译器基础设施 - 元数据项目。 它可以读取 pdb 文件,但我无法获取类的源位置,而只能获取成员。
You could take a look at the Common Compiler Infrastructure - Metadata project on codeplex. It can read pdb files, but there's no way I can see of getting a source location for a class, just members.
答案是肯定的,看看Mono.Cecil
The answer is yes, Look at Mono.Cecil