0

Possible Duplicate:
How does a debugger work?

When I use debug, how does it look inside? The app is compiled and build or there some runtine compilation?

Community
  • 1
  • 1
John V
  • 4,855
  • 15
  • 39
  • 63

3 Answers3

2

The app is compiled as usual and debugging symbols are generated. There's also the usual Just-In-Time compilation which is not unique to debugging.

Justin Niessner
  • 242,243
  • 40
  • 408
  • 536
1

It is built with the addition of PDB files that allow for debugging.

Justin
  • 6,373
  • 9
  • 46
  • 72
0

going deep inside debug is just a config type in MSBUILD
whatever you have in MSBUILD in the DEBUG section would be done

Parv Sharma
  • 12,581
  • 4
  • 48
  • 80