コード例 #1
0
 public static void Error(NSException exception)
 {
     if (exception != null)
     {
         AlertManager.ShowAlert("Native Exception", exception.ToString(), "OK");
     }
 }
コード例 #2
0
 public static void Error(NSException exception)
 {
     if (exception != null)
     {
         ErrorAction?.Invoke(exception.ToString());
     }
 }
コード例 #3
0
ファイル: Main.cs プロジェクト: Fedorm/core-master
        private static void MyUncaughtExceptionHandler(IntPtr exception)
        {
            var e = new NSException(exception);

            AppDelegate.HandleException(e.ToString());
        }
コード例 #4
0
ファイル: Main.cs プロジェクト: Fedorm/core-master
 private static void MyUncaughtExceptionHandler(IntPtr exception)
 {
     var e = new NSException(exception);
     AppDelegate.HandleException(e.ToString());
 }