RE: How to handle exceptions without using try catch f...
Callbacks: Application.ThreadException + new System.Threading.ThreadExceptionEventHandler(Application_ThreadException); AppDomain.CurrentDomain.UnhandledException + new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
RE: How to handle exceptions without using try catch f...
You will have to anticipate any possible complications then deal with them accordingly (e.g. division by zero). This is much better if done intelligently because it uses alot less resources than exception handling would.