C# 来自Windows窗体应用程序C的控制台应用程序#

C# 来自Windows窗体应用程序C的控制台应用程序#,c#,winforms,console-application,progress,C#,Winforms,Console Application,Progress,我有两份申请。 其中一个是控制台应用程序,另一个是普通形式的应用程序——都是用C#编写的。我想从windows窗体应用程序中打开(隐藏)控制台应用程序窗体,并能够向控制台应用程序发送命令行 我该怎么做?您可以启动后台进程 ProcessStartInfo startInfo = new ProcessStartInfo(); startInfo.FileName = "Myapplication.exe"; startInfo.WindowStyle = ProcessWindowStyle.H

我有两份申请。 其中一个是控制台应用程序,另一个是普通形式的应用程序——都是用C#编写的。我想从windows窗体应用程序中打开(隐藏)控制台应用程序窗体,并能够向控制台应用程序发送命令行


我该怎么做?

您可以启动后台进程

ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "Myapplication.exe";
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
Process process = new Process();
process.StartInfo = startInfo;
process.Start();
然后使用

如果要向该进程发送命令,只需使用


可能的解决方案之一是IPC,尤其是

这已经包含在.NET4.0中


注意。

要启动控制台应用程序,请使用

要向控制台应用程序发送命令,需要一种称为进程间通信的方法。一种方法是使用WCF。可以找到一个简单的教程

// This is the code for the base process
Process myProcess = new Process();
// Start a new instance of this program but specify the 'spawned' version.
ProcessStartInfo myProcessStartInfo = new ProcessStartInfo(args[0], "spawn");
myProcessStartInfo.UseShellExecute = false;
myProcessStartInfo.RedirectStandardOutput = true;
myProcess.StartInfo = myProcessStartInfo;
myProcess.Start();
StreamReader myStreamReader = myProcess.StandardOutput;
// Read the standard output of the spawned process.
string myString = myStreamReader.ReadLine();
Console.WriteLine(myString);

myProcess.WaitForExit();
myProcess.Close();
 // Start the Sort.exe process with redirected input.
 // Use the sort command to sort the input text.
 Process myProcess = new Process();

 myProcess.StartInfo.FileName = "Sort.exe";
 myProcess.StartInfo.UseShellExecute = false;
 myProcess.StartInfo.RedirectStandardInput = true;

 myProcess.Start();

 StreamWriter myStreamWriter = myProcess.StandardInput;

 // Prompt the user for input text lines to sort. 
 // Write each line to the StandardInput stream of
 // the sort command.
 String inputText;
 int numLines = 0;
 do 
 {
    Console.WriteLine("Enter a line of text (or press the Enter key to stop):");

    inputText = Console.ReadLine();
    if (inputText.Length > 0)
    {
       numLines ++;
       myStreamWriter.WriteLine(inputText);
    }
 } while (inputText.Length != 0);