VBScript/連想配列

Last-modified: 2010-02-02 (火) 01:09:07

Dictionaryオブジェクトのサンプル
連想配列内のキー一覧を表示する

Dim objDict
Set objDict = WScript.CreateObject("Scripting.Dictionary")
Dim strKey
For Each strKey In objDict.Keys
   WScript.Echo strKey
Next