What is the difference between a Debug and Release build?

 Posted by Blessybaby on 1/6/2010 | Category: .NET Framework Interview questions | Views: 5483
Answer:

The Debug build is the program compiled with full symbolic debug information and no optimization. The Release build is the program compiled employing optimization and contains no symbolic debug information. These settings can be changed as per need from Project Configuration properties. The release runs faster since it does not have any debug symbols and is optimized.


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response