Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the purpose of pdb files?

Tags:

.net

pdb-files

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?

like image 947
AJM Avatar asked Feb 04 '23 02:02

AJM


1 Answers

They hold the debugging symbol information.

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

like image 191
Brian Avatar answered Feb 06 '23 11:02

Brian