Top-down

4 replies [Last post]
Posts: 80

So how do I try out the top down feature?

Some day I will revive Drasil.net

Posts: 1691

Select "TopDown" in the project configuration drop-down box (top of the IDE, should be "Debug" by default).

Posts: 80

So what's the difference between DebugTopDown and ReleaseTopDown?

Some day I will revive Drasil.net

Posts: 1691

One is for debug builds, one is for release builds. Debug builds are not as optimized, contain debugging information, and perform all of the Debug.Assert() and Debug.Fail() calls. Release builds do not contain any of the Debug.Assert()/Fail() calls, produce strongly optimized code, and do not include all the debugging info.

Release mode is intended for just what the name implies - when you release your project to the public.

Posts: 80

Alright, thanks Smile

Some day I will revive Drasil.net