字典对象语法?

发布于 2024-10-15 00:03:11 字数 272 浏览 3 评论 0原文

我无法弄清楚 JScript .NET 字典对象的语法。我已经尝试过

private var myDictionary: Dictionary<string><string>;

,但编译器抱怨它缺少分号并且未声明 Dictionary 对象。

我知道 JScript 确实有一个类似于本机字典的对象格式,但我不确定使用它而不是特定于 .NET 的构造是否有缺点。即,如果有人想使用另一种 .NET 语言扩展我的脚本怎么办?

I'm having trouble figuring out the syntax for a JScript .NET dictionary object. I have tried

private var myDictionary: Dictionary<string><string>;

but the compiler complains that it's missing a semicolon and that the Dictionary object is not declared.

I know JScript does have a native dictionary-like object format, but I'm not sure if there are disadvantages to using it instead of the .NET-specific construct. I.e., what if someone wants to extend my script using another .NET language?

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

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

发布评论

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

评论(2

思慕 2024-10-22 00:03:11

JScript.Net 不支持泛型类型和方法。

检查此链接:

http://msdn.microsoft.com /en-us/library/xfhwa508(v=VS.80).aspx

单击“语法”标题下的“JScript”选项卡。

JScript.Net doesn't support generic types and methods.

Check this link:

http://msdn.microsoft.com/en-us/library/xfhwa508(v=VS.80).aspx

Click on the JScript Tab under Syntax heading.

风吹雨成花 2024-10-22 00:03:11

有一种方法可以在 JScript.Net 中使用字典类型

中创建 ac# 程序集

using System;
using System.Collections.Generic;
using System.Text;

namespace Sample
{
    class Tools
    {
        public Dictionary<string,object> Dict()
        {
            return new Dictionary<string,object>();
        }
    }
}

在 JScript

import System;
import System.Text;

package Sample
{
    public class Main
    {
        public var MyDictionary = Tools.Dict();

        function Main()
        {
            MyDictionary["test"] = "Works";
            Console.WriteLine(MyDictionary["test"]);
        }
    }
}

FTW
这样你就可以将 C# 程序集与 JScript.net 的东西一起使用

There is One way to use the Dictionary Type in JScript.Net

Create a c# assembly

using System;
using System.Collections.Generic;
using System.Text;

namespace Sample
{
    class Tools
    {
        public Dictionary<string,object> Dict()
        {
            return new Dictionary<string,object>();
        }
    }
}

IN JScript

import System;
import System.Text;

package Sample
{
    public class Main
    {
        public var MyDictionary = Tools.Dict();

        function Main()
        {
            MyDictionary["test"] = "Works";
            Console.WriteLine(MyDictionary["test"]);
        }
    }
}

FTW
so you can use c# assembly with your JScript.net stuff

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