pdb 文件的用途是什么?

发布于 2024-09-16 20:58:53 字数 89 浏览 3 评论 0原文

我在我的 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

烧了回忆取暖 2024-09-23 20:58:53

它们保存调试符号信息。

http://en.wikipedia.org/wiki/Program_database

They hold the debugging symbol information.

http://en.wikipedia.org/wiki/Program_database

二货你真萌 2024-09-23 20:58:53

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.

孤寂小茶 2024-09-23 20:58:53

您可以在部署服务器上删除它们。除了用于调试目的之外,它们毫无用处。

You can remove them on deployment server. They are useless except for debugging purpose.

烛影斜 2024-09-23 20:58:53

如果您的 .NET 程序抛出异常并且它是使用 PDB 文件构建的,则该异常消息的堆栈跟踪将如下所示 -

at Program.Main(String[] args) in C:\dev\program.cs:line 262

如果您没有 PDB 文件,它将如下所示 -

at Program.Main(String[] args)

区别在于 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 -

at Program.Main(String[] args) in C:\dev\program.cs:line 262

If you don't have PDB files it will look like this -

at Program.Main(String[] args)

The difference being the PDB file gives you the location in your source code where the exception happened.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文