Investigamos por el mundo on line para así mostrarte la solución para tu dilema, si tienes alguna pregunta puedes dejarnos tu pregunta y te contestaremos con mucho gusto, porque estamos para servirte.
Ejemplo: tabla hash c#
usingSystem;usingSystem.Collections;namespaceCollectionsApplicationclassProgramstaticvoidMain(string[] args)Hashtable ht =newHashtable();
ht.Add("001","Zara Ali");
ht.Add("002","Abida Rehman");
ht.Add("003","Joe Holzner");
ht.Add("004","Mausam Benazir Nur");
ht.Add("005","M. Amlan");
ht.Add("006","M. Arif");
ht.Add("007","Ritesh Saikia");if(ht.ContainsValue("Nuha Ali"))
Console.WriteLine("This student name is already in the list");else
ht.Add("008","Nuha Ali");// Get a collection of the keys.ICollection key = ht.Keys;foreach(string k in key)
Console.WriteLine(k +": "+ ht[k]);
Console.ReadKey();
Reseñas y valoraciones del tutorial
Tienes la posibilidad dar difusión a esta sección si si solucionó tu problema.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)