How do make a call to a ruby script and pass some parameters and once the script is finished return the control back to the c# code with the result?
void runScript() { using (Process p = new Process()) { ProcessStartInfo info = new ProcessStartInfo("ruby C: ubyscript.rb"); info.Arguments = "args"; // set args info.RedirectStandardInput = true; info.RedirectStandardOutput = true; info.UseShellExecute = false; p.StartInfo = info; p.Start(); string output = p.StandardOutput.ReadToEnd(); // process output } }
1.4m articles
1.4m replys
5 comments
57.0k users