ASP RemoveAll ·½·¨
¶¨ÒåºÍÓ÷¨
RemoveAll ·½·¨´ÓÒ»¸ö Dictionary ¶ÔÏóÖÐɾ³ýËùÓÐµÄ key/item ¶Ô¡£
Óï·¨£º
DictionaryObject.RemoveAll
ʵÀý
<%
dim d,a,i
set d=Server.CreateObject("Scripting.Dictionary")
d.Add "c","China"
d.Add "i","Italy"
d.Add "s","Sweden"
d.RemoveAll
Response.Write("<p>Key values:</p>")
a=d.Keys
for i=0 to d.Count-1
Response.Write(a(i))
Response.Write("<br />")
next
set d=nothing
%>
Êä³ö£º
Key values: (nothing)