c# 遍历字典改key

2023-08-24 13:57:12 浏览数 (1)

代码语言:javascript复制
    void test(int cur, int cnt)
    {
        List<string> list = new List<string>(m_pptData.dicPpt.Keys);
        foreach (string key in list)
        {
            if (int.Parse(key) > cur)
            {
                int newId = int.Parse(key)   cnt;
                m_pptData.dicPpt.Add(newId.ToString(), m_pptData.dicPpt[key]);
                m_pptData.dicPpt.Remove(key);
            }
        }
    }

1.把key 存到一个list中 2.遍历list,如果符合条件就新存入字典中,然后删除字典旧项

0 人点赞