我發了一個詞典<string, string>
收集,以便我可以通過他們的字符串標識快速參考項目。如何通過整數索引引用Dictionary <string,string>中的項目?
但我現在還需要訪問這個集體由指數計數器(的foreach不會在我的真實的例子工作)。
我必須對下面的集合做些什麼以便我可以通過整數索引訪問它的項目呢?
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);
}
}
}
到底我在找什麼,謝謝 – 2010-03-08 15:33:56