在VBScript词典中有一个列表

时间:2018-06-07 13:02:31

标签: dictionary vbscript

我想建立一个词典。但值应该是字符串列表。在C#中,这将是

Dictionary<string, List<string>>

我可以在VBS中以某种方式这样做吗?或者可能有一个解决方法?后来我想迭代那本字典。

1 个答案:

答案 0 :(得分:1)

使用数组,例如

dict.add "pizza", array("cheese", "tomato", "ham")

for each x in dict("pizza")
    msgbox x
next