I have a very simple test.rb file:
puts "Hello World"
I want to execute this file within c#, eg:
var runtime = Ruby.CreateRuntime();runtime.ExecuteFile("C:\test.rb");
How can I capture the "Hello World"?
No comments:
Post a Comment