Я следил за ответом на другой вопрос и получил:
// itemCounter is a Dictionary<string, int>, and I only want to keep
// key/value pairs with the top maxAllowed values
if (itemCounter.Count > maxAllowed) {
IEnumerable<KeyValuePair<string, int>> sortedDict =
from entry in itemCounter orderby entry.Value descending select entry;
sortedDict = sortedDict.Take(maxAllowed);
itemCounter = sortedDict.ToDictionary<string, int>(/* what do I do here? */);
}
Visual Studio запрашивает параметр Func<string, int> keySelector
. Я попытался следовать нескольким полу релевантным примерам, которые я нашел в Интернете и вставил k => k.Key
, но это дает ошибку компилятора:
'System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,int>>'
не содержит определения «ToDictionary» и лучший
перегрузка метода расширения
'System.Linq.Enumerable.ToDictionary<TSource,TKey>(System.Collections.Generic.IEnumerable<TSource>,
System.Func<TSource,TKey>)'
имеет недопустимые аргументы