我想在單獨的標籤中的字典中顯示值。我得到的解釋是這樣的:如何動態生成在字典中顯示值的標籤
Dictionary<string, int> counts = new Dictionary<string, int>();
foreach (string code in myCodeList)
{
if (!counts.ContainsKey(code))
{
counts.Add(code, 1);
}
else
{
counts[code]++;
}
}
//now counts contains the expected values
我想動態生成的標籤,因爲在counts
元素只能在運行時確定。
我沒有得到你的代碼,爲什麼不只是Label.Text = String.Concat(「,」,myList); – Cynede 2012-07-23 06:18:22