Tagged Questions
The script-hosting tag has no wiki summary.
0
votes
0answers
32 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 ...