이 가이드에서는 .NET 콘솔 애플리케이션 내에서 처리되지 않은 예외를 효과적으로 관리하는 방법을 보여줍니다. GUI나 웹 애플리케이션과 달리 콘솔 앱은 AppDomain.CurrentDomain
객체
아래 표시된 것처럼 이벤트 핸들러를 UnhandledException
이벤트에 연결하는 일반적인 방법은 콘솔 애플리케이션에서 실패하는 경우가 많습니다.
<code class="language-csharp">AppDomain currentDomain = AppDomain.CurrentDomain; currentDomain.UnhandledException += new UnhandledExceptionEventHandler(MyExceptionHandler);</code>
AppDomain
을(를) 즉시 사용할 수 없기 때문입니다. 해결책은 C#에서 =
연산자를 사용하여 핸들러를 직접 연결하는 것입니다:
<code class="language-csharp">AppDomain.CurrentDomain.UnhandledException += MyExceptionHandler;</code>
이렇게 하면 핸들러가 올바르게 등록되었는지 확인할 수 있습니다. 다음은 예외 트래핑을 보여주는 예입니다.
<code class="language-csharp">static void Main(string[] args) { AppDomain.CurrentDomain.UnhandledException += UnhandledExceptionTrapper; throw new Exception("Application Error!"); } static void UnhandledExceptionTrapper(object sender, UnhandledExceptionEventArgs e) { Console.WriteLine(e.ExceptionObject.ToString()); Console.WriteLine("An unexpected error occurred. Press Enter to exit."); Console.ReadLine(); Environment.Exit(1); }</code>
이 코드는 UnhandledExceptionTrapper
메소드를 등록합니다. 처리되지 않은 예외가 발생하면 이 메서드는 예외 세부 정보를 기록하고 애플리케이션이 종료되기 전에 사용자가 오류를 확인할 수 있도록 합니다.
중요 사항: 이 방법은 JIT 컴파일 중에 발생한 예외(예: 유형 로드 또는 파일 로드 오류)를 포착하지 않습니다. 이러한 문제를 해결하려면 "지터 지연" 전략을 사용하십시오. 여기에는 잠재적으로 문제가 있는 코드를 별도의 방법으로 격리하고 [MethodImpl(MethodImplOptions.NoInlining)]
속성
위 내용은 .NET 콘솔 애플리케이션에서 처리되지 않은 예외를 효과적으로 처리하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!