Environment.Exit() 方法終止進程並向作業系統傳回退出程式碼-
Environment.Exit(exitCode);
使用exitCode 作為0(零)來顯示該過程已成功完成。
使用exitCode 作為非零數字來顯示錯誤,例如-
#Environment.Exit(1) - 傳回值1 表示您想要的檔案不存在
Environment.Exit(2) - 傳回值2 表示檔案格式不正確。
要關閉Windows 窗體中的子應用程式或目前線程,請使用System.Windows.Forms .Application.ExitThread( )。
private void buttonClose_Click(object sender, EventArgs eventArgs) { System.Windows.Forms.Application.ExitThread( ); }
以上是C# 應用程式中的退出方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!