C# 应用程序中的退出方法


Environment.Exit() 方法

Environment.Exit() 方法会终止进程,并向操作系统返回退出代码 -

Environment.Exit(exitCode);

使用 exitCode 为 0(零)表示进程已成功完成。

使用 exitCode 为非零数字表示发生错误,例如 -

  • Environment.Exit(1) - 返回值 1 表示所需的文件不存在

  • Environment.Exit(2) - 返回值 2 表示文件格式不正确。

System.Windows.Forms.Application.ExitThread( )

若要在 Windows 窗体中关闭子应用程序或当前线程,请使用 System.Windows.Forms.Application.ExitThread( )。

private void buttonClose_Click(object sender, EventArgs eventArgs) {
   System.Windows.Forms.Application.ExitThread( );
}

更新时间: 2020 年 6 月 22 日

11K+ 次观看

Kickstart Your Career

完成课程即可获得认证

开始学习
广告