c# – 如何关闭计算机?

前端之家收集整理的这篇文章主要介绍了c# – 如何关闭计算机?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用C#关闭我的电脑?

解决方法

一种简单的方法:使用Process.Start运行shutdown.exe.
shutdown /s /t 0

编程方式:P /调用ExitWindowsEx调用

这将是P / Invoke签名:

[DllImport("aygshell.dll",SetLastError="true")]
private static extern bool ExitWindowsEx(uint dwFlags,uint dwReserved);

在任何情况下,运行代码用户都需要关闭系统权限(通常不是问题,但要记住这一点).

原文链接:https://www.f2er.com/csharp/98896.html

猜你在找的C#相关文章