我有一组单词,想为每个单词分配一个唯一的 int 值。我已经阅读了一段时间关于 LINQ 并想出了这个:
var words = File.ReadAllLines(wordsFile);
var numbers = Enumerable.Range(1, words.Count());
var dict = words
.Zip(numbers, (w, n) => new { w, n })
.ToDictionary(i => i.w, i => i.n);
问题是:
最佳答案
您不需要 Enumerable.Range
和 Zip
方法,因为您可以使用为您提供索引的 Select
重载:
var dict = File.ReadLines(wordsFile)
.Select((word, index) => new { word, index })
.ToDictionary(x => x.word, x => x.index + 1);
关于c# - C#中快速高效的迭代器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30347224/