使用系統;
使用 System.Collections.Generic;
DictionaryDemo 類
{
靜態無效主(字串[]參數)
{
字典示範001();
Console.ReadLine();
字典示範002();
Console.ReadLine();
字典示範003();
Console.ReadLine();
}
/// <摘要>
/// 一般用法
/// 摘要>
靜態無效 DictionaryDemo001()
{
Dictionary
dict = new Dictionary();
dict.Add(1, "111");
dict.Add(2, "222");
//判斷是否存在對應的key並顯示
if (dict.ContainsKey(2))
{
Console.WriteLine(dict[2]);
}
//遍歷Keys C#
foreach(dict.Keys 中的 var 項目)
{
Console.WriteLine("密鑰:{0}", item);
}
//遍歷值
foreach(dict.Values 中的 var 項目)
{
Console.WriteLine("值:{0}", item);
}
//遍歷整個字典
foreach(字典中的var項目)
{
Console.WriteLine("鍵:{0} 值:{1}", item.Key, item.Value);
}
}
/// <摘要>
/// 參數為其他類型
/// 摘要>
靜態無效 DictionaryDemo002()
{
Dictionary dict = new Dictionary();
dict.Add("1", "1,11,111".Split(','));
dict.Add("2", "2,22,222".Split(','));
Console.WriteLine(dict["2"][2]);
}
/// <摘要>
/// 呼叫自訂類
/// 摘要>
靜態無效 DictionaryDemo003()
{
Dictionary dict = new Dictionary();
for (int i = 0; i < 10; i++)
{
yongfa365 y = 新的 yongfa365();
y.使用者代碼 = i;
y.UserName = " www.knowsky.com " + i.ToString();
字典.Add(i, y);
}
foreach(字典中的var項目)
{
Console.WriteLine("{0}一:{1}使用者名稱:{2}", item.Key, item.Value.UserCode, item.Value.UserName);
}
}
}
永發365班
{
公共 int 使用者代碼 { 取得;放; }
公共字串使用者名稱{獲取;放; }
}
http://www.cnblogs.com/kingfly/archive/2010/01/18/1650578.html