字典对象语法?
我无法弄清楚 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
JScript.Net 不支持泛型类型和方法。
检查此链接:
单击“语法”标题下的“JScript”选项卡。
JScript.Net doesn't support generic types and methods.
Check this link:
Click on the JScript Tab under Syntax heading.
有一种方法可以在 JScript.Net 中使用字典类型
中创建 ac# 程序集
在 JScript
FTW
这样你就可以将 C# 程序集与 JScript.net 的东西一起使用
There is One way to use the Dictionary Type in JScript.Net
Create a c# assembly
IN JScript
FTW
so you can use c# assembly with your JScript.net stuff