本文介绍了从C#打开两个控制台窗口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
[DllImport("kernel32.dll")]
private static extern Int32 AllocConsole();
我可以用这个命令来打开的cmd.exe。但我只能打开一个控制台窗口,并在写。我怎样才能打开另一个呢?是开局两控制台窗口的清洁,快速的解决方案。
I can open cmd.exe with this command. But i can open only one console window and write in it. How can i open another one? Is any clean and fast solution for opening two console windows?
推荐答案
不幸的是没有,对不起 - 你不能有一个以上的控制台窗口每在Windows应用程序。
Unfortunately not, sorry — you cannot have more than one console window per application in Windows.
这篇关于从C#打开两个控制台窗口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!