ScriptEngine.ExecuteFile 的细节
我有一段非常简单的 C# 代码,应该加载 Ruby 脚本并执行它。它看起来像这样:
using System;
using System.Collections.Generic;
using System.IO;
using IronRuby;
using Microsoft.Scripting;
namespace RubyCaller
{
class Program
{
static void Main(string[] args)
{
var rubyEng = Ruby.CreateEngine();
rubyEng.ExecuteFile(@".\Scripts\hello.rb");
Console.ReadLine();
}
}
}
Ruby 代码是一个简单的 Hello World,在 IR.exe 中以及使用 rubyEng.Execute() 执行时都可以正常执行。当我尝试以这种方式执行它时,我在调用 ExecuteFile 时收到“NotImplementedException”。
我缺少什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
适用于我最新版本的 IronRuby。您能否提供您收到的异常的堆栈跟踪?另外,您确定您使用的是用于 .NET 框架的 IronRuby 程序集,而不是用于 Windows Phone 7 或 Silverlight 的程序集吗?
Works for me against the latest version of IronRuby. Can you provide the stacktrace for the exception you're getting? Also, are you sure you're using the IronRuby assemblies intended for the .NET framework, and not ones intended for Windows Phone 7 or Silverlight?