La propiedad de recuento de ASP se utiliza para devolver el número de pares clave-valor presentes actualmente en el objeto de diccionario.
Sintaxis:
DictionaryObject.Count
Ejemplo: El siguiente código muestra la propiedad ASP Dictionary.Count.
ASP
<% dim dict 'Create a new dictionary set dict=Server.CreateObject("Scripting.Dictionary") 'Add values to the dictionary dict.Add "p","physics" dict.Add "c","chemistry" dict.Add "m","maths" 'Count the number of key-value pairs Response.Write("Current number of entries: " & dict.Count) 'Add one more value dict.Add "b","biology" 'Count the number of key-value pairs again Response.Write("<br>Current number of entries: " & dict.Count) set dict=nothing %>
Producción:
Current number of entries: 3 Current number of entries: 4
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA