How do I implement a global handler in C# as mentioned here:
How do you implement global iPhone Exception Handling?
I'm trying to catch all errors so it can be logged and possibly uploaded to my server as a crash report. I was initially thinking of a global.asax equivalent location that I could place a log4net style writer with which to send caught errors.
What is the best way to catch errors globally in Xamarin apps?