Tagged Questions
0
votes
1answer
39 views
Specifics of ScriptEngine.ExecuteFile
I've got a very simple bit of code in C# that should load a Ruby script and execute it. It looks like this:
using System;
using System.Collections.Generic;
using System.IO;
using IronRuby;
using ...