2

私は次のように宣言したい:

dictionaryItem = {("Key1", "Value1"}, {"Key2", "Value2"} ... }

しかし、構文を正しく取得できません。そうでない場合は、初期値を持つ 2 つの配列を作成したいと思います (ただし、どのように記述しようとしても、これを機能させることはできませんでした)。

4

1 に答える 1

6

私には、あなたは Scripting Dictionary について説明しているように思えます。これで満足できるかどうかを確認してください。

Dim dct As Object
Set dct = CreateObject("Scripting.Dictionary")
dct.Add "Key1", "Value1"
dct.Add "Key2", "Value2"
Debug.Print dct.Count
Debug.Print dct("Key1")
Debug.Print dct("Key2")
Set dct = Nothing
于 2012-06-05T14:24:34.850 に答える