So how do I try out the top down feature?
So what's the difference between DebugTopDown and ReleaseTopDown?
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.
Alright, thanks ![]()
Select "TopDown" in the project configuration drop-down box (top of the IDE, should be "Debug" by default).