有时候在项目中,会调用一个控制台应用程序去处理一些工作.那在我们的程序中要怎么样做才能调用一个控制台应用程序并将参数传递过去,控制台程序执行完后,我们的程序又怎样获取返回值?代码如下:调用代码: try { Process pro = new Process(); //控制台应用程序所在目录 pro.StartInfo.FileName = @"C:\U…
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Diagnostics; using System.Runtime.InteropServices; namespace HideConsole { class Program { static void Main(string[] args) { Console.Title = "HideConso…