2 types derived from Iterator
mscorlib (2)
system\io\filesystemenumerable.cs (1)
161internal class FileSystemEnumerableIterator<TSource> : Iterator<TSource>
system\io\ReadLinesIterator.cs (1)
25internal class ReadLinesIterator : Iterator<string>
4 references to Iterator
mscorlib (4)
system\io\filesystemenumerable.cs (3)
101protected abstract Iterator<TSource> Clone(); 123Iterator<TSource> duplicate = Clone(); 359protected override Iterator<TSource> Clone()
system\io\ReadLinesIterator.cs (1)
61protected override Iterator<string> Clone()