Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 3 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
        }
    }
share|improve this answer
thanks that what i was looking for. – Jonathan Feb 19 '10 at 0:01

Just to fill smaller gaps I've implemented the same functionallity with ability to access OutputStream asynchronously.

 
   public void RunScript(string script, string arguments, out string errorMessage)
   {
      errorMessage = string.empty;
      using (Process process = new Process())
      {
          process.OutputDataReceived += process_OutputDataReceived;
          ProcessStartInfo info = new ProcessStartInfo(script);
          info.Arguments = String.Join(" ", arguments);
          info.UseShellExecute = false;
          info.RedirectStandardError = true;
          info.RedirectStandardOutput = true;
          info.WindowStyle = ProcessWindowStyle.Hidden;
          process.StartInfo = info;
          process.EnableRaisingEvents = true;
          process.Start();
          process.BeginOutputReadLine();
          process.WaitForExit();
          errorMessage = process.StandardError.ReadToEnd();
     }
  }
  private void process_OutputDataReceived(object sender, DataReceivedEventArgs e)
  {
     using (AutoResetEvent errorWaitHandle = new AutoResetEvent(false))
     {
         if (!string.IsNullOrEmpty(e.Data))
         {
              // Write the output somewhere
          }
      }
  }

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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