gpt4 book ai didi

c# - 如何将控制台 C# 程序的输入和输出重定向到套接字?

转载 作者:太空宇宙 更新时间:2023-11-03 22:25:10 27 4
gpt4 key购买 nike

如何将控制台 C# 程序的输入和输出重定向到套接字?我需要从另一个进程中启动该程序,并使其接收输入并将输出发送到网络中另一台计算机上运行的另一个进程。我想要做的是以编程方式在另一个站上运行应用程序,同时从当前终端控制它。

最佳答案

使用 System.Diagnostics.Process 类来运行您的控制台程序。

System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.RedirectStandardInput = true;
process.StartInfo.RedirectStandardOutput = true;

然后您可以将任何流(包括网络流)连接到 process.StandardInputprocess.StandardOutput

关于c# - 如何将控制台 C# 程序的输入和输出重定向到套接字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1683046/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com