问题描述
所以,我正在做一些事情,我需要一种方法来杀死Roblox,使用一个按钮。有人帮帮我吗?
So, im working on something and I need a way to kill Roblox, using a button. Anyone help me out?
推荐答案
你可以使用
You can use
          Process.GetProcessByName()  //查看文档
Process.GetProcessByName() // see the doc
,然后确定您的具体流程,然后致电
and then identify your specific process, and then call
        Process.CloseMainWindow()//查看文件
          Process.Close()  //查看您获得的实例上的文档
Process.CloseMainWindow() // see the doc
Process.Close() // see the doc
,以便顺利关闭。
但,如果你真的想要杀死,请致电,
But, if you wanna really kill it, call, instead,
          Process.Kill()  //查看文档
Process.Kill() // see the doc
•
这篇关于如何使用C#终止进程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!