Hice una Diccionario <string, string>
colección para que pueda hacer referencia rápidamente a los artículos por su identificador de cadena.¿Cómo hacer referencia a los elementos en el diccionario <cadena, cadena> por índice entero?
Pero ahora también tienen que acceso este colectivo por índice de contador (foreach no funcionará en mi ejemplo real).
¿Qué debo hacer con la colección a continuación para que pueda acceder a sus elementos a través del índice entero también?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TestDict92929
{
class Program
{
static void Main(string[] args)
{
Dictionary<string, string> events = new Dictionary<string, string>();
events.Add("first", "this is the first one");
events.Add("second", "this is the second one");
events.Add("third", "this is the third one");
string description = events["second"];
Console.WriteLine(description);
string description = events[1]; //error
Console.WriteLine(description);
}
}
}
exactamente lo que estaba buscando, gracias –