using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace IMCS { static class Program { /// /// 应用程序的主入口点。 /// [STAThread] static void Main() { Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException); Application.ThreadException += Application_ThreadException; Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form_Main()); } private static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e) { YG.Log.Instance.WriteLogAdd($"Application_ThreadException-->26-->{e.Exception}"); } } }