I have a process which I've been building until today in debug mode and it behaved just like I expected it to behave. If an exception was thrown I debugged it and fixed the problem.
Now I built my process in release mode, but it throws exceptions that it didn't when I ran it in debug mode.
I'd like to debug it, but in debug mode the compiler protected the memory and other stuff, I can't catch those execptions.
Is there a way to make the debug mode throw the exceptions that the release build would throw?