将控制台链接到应用程序,以便不需要 cmd 框
本文关键字:不需要 cmd 控制台 链接 应用程序 | 更新日期: 2023-09-27 17:57:06
我想在我的应用程序中添加控制台,就像在Netbeans IDE中一样,我们不需要去黑色cmd框,一切都显示在IDE中。可能吗?
你需要这个:
Process p = Process.GetCurrentProcess();
p.UseShellExecute = false;
p.RedirectStandardOutput = true;
using (StreamReader reader = process.StandardOutput)
{
string result = reader.ReadToEnd();
Console.Write(result);
}
但你的问题是广泛的。这有助于:
System("Put_Your_Console_Command_Here");
命令将被执行,就像你在cmd中编写的那样。
您是否正在寻找"输出"窗口? 尝试从 Visual Studio 中的工具栏调试> Windows>输出。