1

我正在使用 MS ScriptControl 向我的应用程序添加脚本。一切正常,除非我有一个对具有数组的脚本引擎可见的类。我无法从脚本访问数组元素。

示例 C# 类:

using System.Runtime.InteropServices;

namespace my_app
{
    [ComVisible(true)]
    public class test
    {
        public string this_works = "Hello";
        public string[] no_workey = new string[4];

        public test()
        {
            no_workey[0] = "I";
            no_workey[1] = "can't";
            no_workey[2] = "see";
            no_workey[3] = "you!";
        }
    }
}

我将类添加到脚本引擎:

script.AddObject("test", new test(), true);

我已经内置了一些功能来打印一个对象。这是我的结果:

test.this_works   ->  "Hello"
test.no_workey    -> System.String[]
test.no_workey[0] -> 'test.no_workey.0' is null or not an object.

有谁知道我该怎么做?谢谢!

4

0 回答 0