我在 main.cs 中包装了日志代码以捕获异常,但是由 monotouch 构建的应用程序通常在 iPad 中崩溃,并且我找不到任何日志。(部分代码包含多线程操作和wcf服务)
如何捕获所有崩溃异常?
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);
}
}
}