防止命令提示符自动关闭(CS 脚本)
我正在尝试 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您不想更改脚本本身,请打开命令窗口并从命令行执行脚本。 脚本完成后控制台关闭的唯一原因是因为它是由脚本本身创建的。 该脚本不会关闭您打开的控制台。
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.
我不知道你怎么称呼它,但你总是可以用
"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]
orConsole.ReadLine()
in your script.一个糟糕的方法是在脚本末尾添加 Console.Read() 。
A poor way concists of adding a Console.Read() at the end of you script.