ScriptEngine.ExecuteFile 的细节

发布于 2024-12-13 14:45:44 字数 591 浏览 0 评论 0 原文

我有一段非常简单的 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 中以及使用 ruby​​Eng.Execute() 执行时都可以正常执行。当我尝试以这种方式执行它时,我在调用 ExecuteFile 时收到“NotImplementedException”。

我缺少什么?

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 Microsoft.Scripting;

namespace RubyCaller
{
    class Program
    {
        static void Main(string[] args)
        {
            var rubyEng = Ruby.CreateEngine();
            rubyEng.ExecuteFile(@".\Scripts\hello.rb");
            Console.ReadLine();
        }
    }
}

The Ruby code is a simple Hello World that executes fine both in IR.exe and when executed using rubyEng.Execute(). When I attempt to execute it this way, I get "NotImplementedException" on the call to ExecuteFile.

What am I missing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橙味迷妹 2024-12-20 14:45:44

适用于我最新版本的 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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文