我想在我的C#应用程序中使用RubyGem。
我已经下载了IronRuby,但我不确定如何启动和运行。他们的下载包括ir.exe,它包含一些DLL,如IronRuby.dll。
在我的.NET项目中引用IronRuby.dll后,如何将* .rb文件的对象和方法公开给我的C#代码?
非常感谢,
迈克尔
答案 0 :(得分:4)
这就是你如何互操作:
确保您有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();
}
}
}
注意,Runtime有一个ExecuteFile,可用于执行文件。
让宝石继续
igem.exe