Use foreach in hashtable
ctg | 16 Mayo, 2006 00:00Two ways for use a “foreach” in a Hashtable
foreach (string key in hash.Keys) Response.Write(key + '=' + hash[key] + "<br>");
Or
foreach (DictionaryEntry myDE in hash) Response.Write(myDE.Key + "=" + myDE.Value + "<br>");
Posted in
C# .
Comentario: (0).
Retroenlaces:(0).
Enlace
«Next post |
Previous post»