<完全な辞書オブジェクト参照
Addメソッドは、Dictionaryオブジェクトに新しいキー/アイテムのペアを追加します。
構文
DictionaryObject.Add(key,item)
パラメーター | 説明 |
---|---|
key | 必須。 アイテムに関連付けられたキー値 |
item | 必須。 キーに関連付けられている項目の値 |
例
<%
Dim d
Set d=Server.CreateObject("Scripting.Dictionary")
d.Add "re","Red"
d.Add "gr","Green"
d.Add "bl","Blue"
d.Add "pi","Pink"
Response.Write("The value of key gr is: " & d.Item("gr"))
%>
Output:
The value of key gr is: Green
<完全な辞書オブジェクト参照