What are these pdb files i get in /bin folder
they are generated this way:
app_assamebly_name.pdb
and my referenses .dll got one too
are these important...
and what are the role of these
Printable View
What are these pdb files i get in /bin folder
they are generated this way:
app_assamebly_name.pdb
and my referenses .dll got one too
are these important...
and what are the role of these
Its a database of debugger info, I don't believe they are made when you compile in 'release' mode or whatever it is they call it, just in 'debug' mode. C++ does the something like it as well.
I see.. like to make the next debug much faster, ok thx
They are not really to make the debug faster, but to make it possible. These files provide the link between the executable and the source code.
In VB.NET you debug executables.