It is known that compiling a program in "Debug" mode (rather than "release mode") can lead to poor performance.
But sometimes it is useful to have some debugging information. For example, when our program is running on a production server and an exception occurs, this will help to register the stack trace during the exception.
I realized that it’s possible, compiling the code in “release mode” and placing the * .pdb file along with the binary files in one folder.
Does anyone know if attaching the pdb file is related to any performance issue.
thank
source
share