防止命令提示符自动关闭(CS 脚本)

发布于 2024-07-15 11:56:33 字数 134 浏览 7 评论 0原文

我正在尝试 CS-Script ,我的问题是每次运行脚本时控制台窗口都是脚本退出时自动关闭。 我怎样才能防止这种情况发生?

I'm experimenting with CS-Script and my problem is that each time I run a script the console window is automatically closed when the script exits. How can I prevent this from happening?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一瞬间的火花 2024-07-22 11:56:33

如果您不想更改脚本本身,请打开命令窗口并从命令行执行脚本。 脚本完成后控制台关闭的唯一原因是因为它是由脚本本身创建的。 该脚本不会关闭您打开的控制台。

If you don't want to change the script itself then open a command window and execute the script from the command line. The only reason the console closes after the script completes is because it was created by the script itself. The script will not close a console that you opened.

迷离° 2024-07-22 11:56:33

我不知道你怎么称呼它,但你总是可以用 "Ctrl + R" > 来调用它 cmd.exe /k [您的命令] 或脚本中的 Console.ReadLine()

I don't how you call it but you can always call it with "Ctrl + R" > cmd.exe /k [your command] or Console.ReadLine() in your script.

哎呦我呸! 2024-07-22 11:56:33

一个糟糕的方法是在脚本末尾添加 Console.Read() 。

A poor way concists of adding a Console.Read() at the end of you script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文