}
}
class tout
{
Process p;
public tout(Process p)
{
  this.p = p;
}
public void Read()
{
  int a = -1;
  while((a = p.StandardOutput.Read()) > 0)
  {
   Console.Write( ((char) a).ToString() );
  }
  Thread.CurrentThread.Abort();
  return;
}
}
class terr
{
Process p;
public terr(Process p)
{
  this.p = p;
}
public void Read()
{
  int a = -1;
  while((a = p.StandardError.Read()) > 0)
  {
   Console.Write(((char) a).ToString());
  }
  Thread.CurrentThread.Abort();
  return;
}
}

相关文章:

  • 2022-12-23
  • 2021-10-31
  • 2022-12-23
  • 2022-12-23
  • 2022-02-04
  • 2022-01-21
  • 2022-02-21
  • 2022-12-23
猜你喜欢
  • 2021-11-11
  • 2021-06-29
  • 2022-12-23
  • 2022-01-29
  • 2021-07-17
  • 2022-12-23
相关资源
相似解决方案