标签: dictionary vbscript
我想建立一个词典。但值应该是字符串列表。在C#中,这将是
Dictionary<string, List<string>>
我可以在VBS中以某种方式这样做吗?或者可能有一个解决方法?后来我想迭代那本字典。
答案 0 :(得分:1)
使用数组,例如
dict.add "pizza", array("cheese", "tomato", "ham") for each x in dict("pizza") msgbox x next