What's inside a PDB File?
Background We have all used the Visual Studio Debugger to step through code, in the hunt for bugs. For C or C++ code, that Debugger relies upon a file, with the extension ".pdb", called the "Program DataBase", or simply "the PDB". The PDB is written by the Linker when you build your program; it contains line-number and symbols information. But wh...