📜  ASP Dictionary.RemoveAll 方法

📅  最后修改于: 2022-05-13 01:56:41.561000             🧑  作者: Mango

ASP Dictionary.RemoveAll 方法

ASP Dictionary.RemoveAll 方法用于从 Dictionary 对象中删除所有键值对。

句法:

DictionaryObject.RemoveAll 

示例代码:下面的代码演示了 ASP Dictionary.RemoveAll 方法。

ASP
<%
dim d,a,i
set d=Server.CreateObject("Scripting.Dictionary")
d.Add "m","mango"
d.Add "n","naman"
d.Add "b",""banana>")
next
  
set d=nothing
%>


输出:

Key values:

(nothing)