An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
static void Main(string[] args) { ProcessStartInfo Info = new ProcessStartInfo("C:/Program Files/Rapid-I/RapidMiner/scripts/rapidminer.bat"); Info.UseShellExecute = false; Info.ErrorDialog = false; Info.CreateNoWindow = true; Info.RedirectStandardOutput = true; Info.Arguments = "C:/Program Files/Rapid-I/RapidMiner/scripts/01_ParameterOptimization.xml"; Process p = System.Diagnostics.Process.Start(Info); System.IO.StreamReader oReader2 = p.StandardOutput; string sRes = oReader2.ReadToEnd(); oReader2.Close(); //All the external programs output is now in sRes Console.WriteLine(sRes); Console.ReadLine(); }