using System;
class Program {
static void Main(string[] args) {
System.AppDomain.CurrentDomain.UnhandledException += UnhandledExceptionTrapper;
throw new Exception("Kaboom");
}
static void UnhandledExceptionTrapper(object sender, UnhandledExceptionEventArgs e) {
Console.WriteLine(e.ExceptionObject.ToString());
Console.WriteLine("Press Enter to continue");
Console.ReadLine();
Environment.Exit(1);
}
}
// c#에서 Console(콘솔) 어플리케이션에서 글로벌 에러 처리
반복 작업시 유용하게 이용
반응형
'C#' 카테고리의 다른 글
c# ,System.Environment.SpecialFolder 윈도우 특정 폴더 PATH 구하기 (0) | 2021.03.03 |
---|---|
c# 윈도우 공유폴더 접근 (0) | 2020.10.15 |
c# mediaplayer 재생 하기 , c# play mp3 by media player (0) | 2020.10.15 |
c# cefsharp filedownload 구현 (0) | 2020.10.15 |