vote up 3 vote down star
1

In .NET applications is generating debug info (pdb) making my application slower in runtime? or do they only comes into the play when the application crashes?

flag

stackoverflow.com/questions/41842/… – boj Apr 6 at 20:57
Ugh! missed that one. – dr. evil Apr 6 at 21:49

1 Answer

vote up 4 vote down check

They only come into play when the program crashes. PDB's just contain information for mapping run-time information to source information that is useful for debugging.

However, building your program in debug mode versus retail mode can make it slower at runtime. This is independent of PDB's - You can generate debug info for retail binaries and use it for debugging. Debug builds typically are less-aggressively optimized in order to make debugging easier.

You should always generate PDB's, even for retail builds. Retail builds are usually what gets deployed, and therefore many problems you'll look at will be from these systems.

link|flag
"less aggressively optimised", lol, good phrase. I always build with optimisation off for my debug builds. – gbjbaanb Apr 6 at 22:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.