Reputation: 2803
Why when I change build to debug x86 rather than "Any CPU", do all the calls to System.Diagnostics.Debug.Print()
get skipped? I'm using a 64bit machine. Exception output still shows.
Upvotes: 0
Views: 448
Reputation: 117220
You probably changed to a 'Release' build too, and hence DEBUG is not defined.
Upvotes: 2