11-30-2005 04:52 AM
12-01-2005 03:57 AM
12-01-2005 09:17 AM
Another difference is that local (automatic) variables within a function are initialised to 0 for the debug mode, whereas they remain uninitialised (and thus guaranteed to be garbage) for the release mode (unless you initialise them explicitly, obviously). Not that anyone would ignore the compilation warnings about using uninitialised variables, of course...
JR
05-05-2013 03:10 AM
Debug mode and Release mode are different configurations for building your .Net
project. Programmers generally use the Debug mode for debugging step by step
their .Net project and select the Release mode for the final build of Assembly
file (.dll or .exe). follow link for more information
http://net-informations.com/faq/net/debug-release.htm
cros.