Wie kann ich in monotouch / ios alle Absturzausnahmen abfangen?

Ich habe Protokollcode in main.cs eingebunden, um die Ausnahme abzufangen, aber die von monotouch erstellte App stürzt normalerweise auf dem iPad ab, und ich kann kein Protokoll finden. (Einige Codes enthalten Multithread-Operationen und Wcf-Dienste.)

Wie kann ich alle Absturzausnahmen abfangen?

public class Application
{
    // This is the main entry point of the application.
    static void Main (string[] args)
    {
        // if you want to use a different Application Delegate class from "AppDelegate"
        // you can specify it here.
        try
        {
            UIApplication.Main (args, null, "AppDelegate");
        }
        catch (Exception ex)
        {
            Util.LogException("Main",ex);
        }
    }
}

Antworten auf die Frage(1)

Ihre Antwort auf die Frage