C#遍历字典

C#遍历字典

foreach (KeyValuePair<int, Color> kvp in dic)
    lst.Add(kvp.Value);
原文地址:https://www.cnblogs.com/lged/p/6080670.html