Esta es la respuesta más exacta que encomtrarás aportar, pero primero estúdiala detenidamente y valora si se adapta a tu proyecto.
Ejemplo 1: diccionario de creación de c sharp
// To initialize a dictionary, see below:IDictionary<int,string> dict =newDictionary<int,string>();// Make sure to give it the right type of key and value// To add values use 'Add()'
dict.Add(1,"One");
dict.Add(2,"Two");
dict.Add(3,"Three");// You can also do this together with the creationIDictionary<int,string> dict =newDictionary<int,string>()1,"One",2,"Two",3,"Three";
Ejemplo 2: acceder a dic por key C#
usingSystem;usingSystem.Collections.Generic;classProgramstaticvoidMain()Dictionary<string,int> dictionary =newDictionary<string,int>();
dictionary.Add("apple",1);
dictionary.Add("windows",5);// See whether Dictionary contains this string.if(dictionary.ContainsKey("apple"))intvalue= dictionary["apple"];
Console.WriteLine(value);// See whether it contains this string.if(!dictionary.ContainsKey("acorn"))
Console.WriteLine(false);
Calificaciones y comentarios
Al final de la post puedes encontrar las observaciones de otros administradores, tú además tienes el poder dejar el tuyo si lo crees conveniente.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)