Jump to content

Debug Vs. Release

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
1 reply to this topic

#1
Guest_NeedHelp_*

Guest_NeedHelp_*
  • Guests
Does anybody know what's the difference between the Debug build of a C#
application and the Release build? They are the same size and both seem to have the same preformance.

#2
brackett

brackett

    Programmer

  • Members
  • PipPipPipPip
  • 192 posts
Debug build (by default) turns off optimizations, builds debugger symbols, and has TRACE and DEBUG defined. You can customize the differences in VStudio though.