public void ExecuteProcessChain(string[] asProcesses, string sInRedirect, string sOutRedirect)
{
Process p1 = new Process();
p1.StartInfo.UseShellExecute = false;
p1.StartInfo.RedirectStandardOutput = true;
p1.StartInfo.FileName = asProcesses[0];
p1.Start();
StreamReader sr = p1.StandardOutput;
string s, xxx = "";
while ((s = sr.ReadLine()) != null)
Console.WriteLine("sdfdsfs");
//xxx += s+"\n";
p1.StartInfo.RedirectStandardInput = true;
p1.StartInfo.RedirectStandardOutput = false;
p1.StartInfo.FileName = asProcesses[1];
p1.Start();
StreamWriter sw = p1.StandardInput;
sw.Write(xxx);
sw.Close();
sr.Close();
}
I am trying to execute "calc|calc" but when I do so , it gets stuck at the line while ((s = sr.ReadLine()) != null) and only after I close the calculator the code continues. I need both calculators to work together. do you have idea how to do that?
while ((s = sr.ReadLine()) != null)? – Searock Mar 2 '11 at 17:39string s, xxx = "";only setsxxxto"", s is uninitialized. The parameters of the function are named according to Systems Hungarian. This may be part of your assignment but is generally seen as bad practice, especially in C#. Here's an interesting article on the subject: Making Wrong Code Look Wrong – Tamschi Mar 3 '11 at 1:40