看起来System.Collections.Generic.Dictionary<TKey, TValue>
,它显然实现ICollection<KeyValuePair<TKey, TValue>>
了,但没有所需的“ void Add(KeyValuePair<TKey, TValue> item)
”功能。
这也可以在尝试Dictionary
像这样初始化时看到:
private const Dictionary<string, int> PropertyIDs = new Dictionary<string, int>()
{
new KeyValuePair<string,int>("muh", 2)
};
失败了
方法'Add'没有重载需要'1'参数
为什么呢?