Test de agudeza visual con Hashtables
¿Qué diferencia hay entre este código ...
Dim hstMiHash As New Hashtable()
If hstMiHash.ContainsKey("CLAVE") = False Then
hstMiHash.Add("CLAVE", "Valor")
Else
hstMiHash("CLAVE") = "Valor"
End If
... y este otro?
Dim hstMiHash As New Hashtable()
hstMiHash("CLAVE") = "Valor"
RESPUESTA: ninguna :)
Hashtable.Add