Sé libre de compartir nuestro espacio y códigos con otro, necesitamos de tu ayuda para aumentar esta comunidad.
Ejemplo 1: el diccionario de c # obtiene valor por key
Dictionary<string,string> dict =newDictionary<string,string>();
dict.Add("UserID","test");string userIDFromDictionaryByKey = dict["UserID"];
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);
Ejemplo 3: diccionario c # get key por valor
var myKey = types.FirstOrDefault(x => x.Value =="one").Key;
Ejemplo 4: diccionarios de c #
IDictionary<int,string> dict =newDictionary<int,string>();//orDictionary<int,string> dict =newDictionary<int,string>();
Ejemplo 5: agregar elemento al diccionario en c sostenido
// To add an item to a dictionary use 'Add()'
dict.Add(1,"One");
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)