dll vs pdb file

  • Thread starter Thread starter Reza Alirezaei
  • Start date Start date
R

Reza Alirezaei

when I build an assembly project two files are being produced,dll file and
pdb file,,what is the difference bwtween these two files?

Thanks for your time
 
Dlls are basically like lib files, but dynamically linked. They contain all
your program code.

Pdbs are Program Databases. They're like the dbg files, used for debugging.
They're also called symbols - they aid the debugger, in determining the
execution context, symbol names, call stack, etc.

For normal execution, you only need the dll. You would need the Pdbs only
if you're planning on debugging.

-vJ
 
The dll is the actual binary that executes. The PDB is the symbols that map memory locations in the binary to symbolic names for the debugger

Jackson Davi
-
This posting is provided "As-Is" and confers no warrentee or rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top