我想在单独的标签中显示字典中的值。我得到这样的字典:
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
只能在运行时确定。