[C#] Dictionary 如何使用 foreach (KeyValuePair)
這個也是很常用,也來記錄一下。
參考:http://msdn.microsoft.com/zh-tw/library/5tbh8a42.aspx
using System.Collections;
namespace KeyValuePairTest {
class Program {
private static Dictionary<string, string> _DicList;
static void Main(string[] args) {
_DicList = new Dictionary<string, string>();
_DicList.Add("s1", "test1");
_DicList.Add("s2", "test2");
_DicList.Add("s3", "test3");
foreach (KeyValuePair<string, string> item in _DicList) {
Console.WriteLine(item.Value);
}
Console.ReadKey();
}
}
}
輸出結果:
三小俠 小弟獻醜,歡迎指教