this.close(); //方法退關閉當前窗口。
Application.Exit(); //方法退出整個應用程序。 (無法退出單獨開啟的線程)
Application.ExitThread(); //釋放所有線程
Environment.Exit(0) //可以退出單獨開啟的線程
From.close()exit(1) //如果運行的是Form應用程序,可以調用From.close()exit(1) 表示異常退出exit(0)表示正常退出
Thread.Abort() //退出線程可以調用
Process.close() //退出進程可以調用 System.Diagnostics.Process.GetCurrentProcess().Close();