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?

link|improve this question

62% accept rate
feedback

1 Answer

up vote 2 down vote accepted
    void runScript()
    {
        using (Process p = new Process())
        {
            ProcessStartInfo info = new ProcessStartInfo("ruby C:\rubyscript.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
        }
    }
link|improve this answer
thanks that what i was looking for. – Jonathan Feb 19 '10 at 0:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.