如何将IEnumerable转换为Dictionary?

时间:2019-03-24 03:59:19

标签: c# dictionary ienumerable

我收到此错误:

  

参数2:无法从'System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, Rules.SimpleRule>>'转换为'System.Collections.Generic.Dictionary<string, Rules.SimpleRule>'

有人可以帮我解决这个问题吗?

public void AddFlag(string name,
 IEnumerable<KeyValuePair<string,SimpleRule>> rule)
        {
            Flags.Add(name, rule);
        }

0 个答案:

没有答案