如何在 .NET 中使用 Ruby 代码?
我想在我的 C# 应用程序中使用 RubyGem。
我已经下载了 IronRuby,但我不知道如何启动和运行。他们的下载包括 ir.exe,并且还包括一些 DLL,例如 IronRuby.dll。
在我的 .NET 项目中引用 IronRuby.dll 后,如何向我的 C# 代码公开 *.rb 文件的对象和方法?
非常感谢,
迈克尔
I'd like to use a RubyGem in my C# application.
I've downloaded IronRuby, but I'm not sure how to get up and running. Their download includes ir.exe, and it includes some DLLs such as IronRuby.dll.
Once IronRuby.dll is referenced in my .NET project, how do I expose the objects and methods of an *.rb file to my C# code?
Thanks very much,
Michael
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是进行互操作的方式:
确保您有对
IronRuby
、IronRuby.Libraries
、Microsoft.Scripting
和Microsoft.Scripting 的引用.Core
注意,运行时有一个 ExecuteFile,您可以使用它来执行您的文件。
要让 Gems 运行,
igem.exe
安装 gem,This is how you do interop:
Make sure you have refs to
IronRuby
,IronRuby.Libraries
,Microsoft.Scripting
andMicrosoft.Scripting.Core
Note, Runtime has an ExecuteFile which you can use to execute your file.
To get the Gems going
igem.exe