UnityEngine.UnhandledExceptionHandler.NativeUnhandledExceptionHandler C# (CSharp) 메소드

NativeUnhandledExceptionHandler() 개인적인 메소드

private NativeUnhandledExceptionHandler ( ) : void
리턴 void
        private static extern void NativeUnhandledExceptionHandler();
        private static void PrintException(string title, Exception e)

Usage Example

        private static void HandleUnhandledException(object sender, UnhandledExceptionEventArgs args)
        {
            Exception exceptionObject = args.ExceptionObject as Exception;

            if (exceptionObject != null)
            {
                UnhandledExceptionHandler.PrintException("Unhandled Exception: ", exceptionObject);
            }
            UnhandledExceptionHandler.NativeUnhandledExceptionHandler();
        }
All Usage Examples Of UnityEngine.UnhandledExceptionHandler::NativeUnhandledExceptionHandler