Вот как вы взаимодействуете:
Убедитесь, что у вас есть ссылки на IronRuby
, IronRuby.Libraries
, Microsoft.Scripting
и Microsoft.Scripting.Core
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using IronRuby;
using IronRuby.Builtins;
using IronRuby.Runtime;
namespace ConsoleApplication7 {
class Program {
static void Main(string[] args) {
var runtime = Ruby.CreateRuntime();
var engine = runtime.GetRubyEngine();
engine.Execute("def hello; puts 'hello world'; end");
string s = engine.Execute("hello") as string;
Console.WriteLine(s);
// outputs "hello world"
engine.Execute("class Foo; def bar; puts 'hello from bar'; end; end");
object o = engine.Execute("Foo.new");
var operations = engine.CreateOperations();
string s2 = operations.InvokeMember(o, "bar") as string;
Console.WriteLine(s2);
// outputs "hello from bar"
Console.ReadKey();
}
}
}
Примечание. В среде исполнения есть файл ExecuteFile, который вы можете использовать для запуска вашего файла.
Чтобы заставить работать самоцветы
- Убедитесь, что вы установили свой драгоценный камень, используя
igem.exe
- вам, вероятно, придется установить несколько путей поиска, используя Engine.SetSearchPaths