pdb 文件的用途是什么?
我在我的 .NET 项目之一中使用第三方库。
我注意到 bin 文件夹中包含大量 pdb 文件 - 每个 dll 一个。 pdb 文件的用途是什么?
I Am using a third party library in one of my .NET projects.
I notice there are a ton of pdb files included in the bin folder - one for each dll. What is the purpose of the pdb file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
它们保存调试符号信息。
http://en.wikipedia.org/wiki/Program_database
They hold the debugging symbol information.
http://en.wikipedia.org/wiki/Program_database
dll 是二进制的,因此您不能在其中包含代码行。例如,当您在执行二进制文件时出现异常时,pdb 可以帮助您的调试器向您显示代码行。
A dll is binary so you can't have your code line inside. For instance ,the pdb helps your debugger to show you your code line when you have an exception when you're executing your binaries.
您可以在部署服务器上删除它们。除了用于调试目的之外,它们毫无用处。
You can remove them on deployment server. They are useless except for debugging purpose.
如果您的 .NET 程序抛出异常并且它是使用 PDB 文件构建的,则该异常消息的堆栈跟踪将如下所示 -
如果您没有 PDB 文件,它将如下所示 -
区别在于 PDB 文件为您提供了源代码中发生异常的位置。
If your .NET program throws an exception and it is built with a PDB file the stack trace for that exception message will look like this -
If you don't have PDB files it will look like this -
The difference being the PDB file gives you the location in your source code where the exception happened.