C#中快速高效的迭代器

时间:2015-05-20 10:38:43

标签: c# linq

我有一个单词集合,并希望为每个单词分配一个唯一的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);

问题是:

  1. 这是一个好方法吗?它在性能方面是否有效?
  2. 在简单性(清晰代码)方面有更好的方法吗?

1 个答案:

答案 0 :(得分:6)

您不需要Enumerable.RangeZip方法,因为您可以使用为您提供索引的Select重载:

var dict = File.ReadLines(wordsFile)
    .Select((word, index) => new { word, index })
    .ToDictionary(x => x.word, x => x.index + 1);