Debugging helps you find errors in program logic. For example:
CODE
someVariable = 0;
otherVariable = 13 / someVariable; //divide by zero impossible
You can't debug language errors, like
CODE
25 = someVariable + *$&_%*$; //makes no sense
since the compiler has no idea how to translate that in executable (and thus debuggable) code. So there's no .xbe file for the Xbox to start/debug.
This post has been edited by fghjj: Jun 25 2006, 08:56 PM