<完全な辞書オブジェクト参照
Countプロパティは、ディクショナリオブジェクトのキー/アイテムのペアの数を返します。
構文
DictionaryObject.Count
例
<%
dim d
set d=Server.CreateObject("Scripting.Dictionary")
d.Add "n","Norway"
d.Add "i","Italy"
d.Add "s","Sweden"
Response.Write("The number of key/item pairs: " & d.Count)
set d=nothing
%>
Output:
The number of key/item pairs: 3
<完全な辞書オブジェクト参照