using System;
using System.IO;
class Program {
static void Main() {
System.AppDomain.CurrentDomain.UnhandledException += UnhandledExceptionHandler;
throw new Exception("СМЭРТЬ");
}
static void UnhandledExceptionHandler(object sender, UnhandledExceptionEventArgs e) {
File.WriteAllText("UnhandlerError.log", e.ExceptionObject.ToString());
Environment.Exit(1);
}
}