I've gotta be missing something simple here.

Take the following code:

public IEnumerable<int> getInt(){
  for(int i = 0; i < 10; i++){
   yield return i;
  }
}

I can call this with:

foreach (int j in obj.getInt()){
  //do something with j
}

How can I use the getInt method without the foreach loop:

IEnumerable<int> iter = obj.getInt();
// do something with iter ??

Thanks.

EDITS

For those wondering why I'd want this. I'm iterating two things:

IEnumerator<int> iter = obj.getInt().GetEnumerator();
foreach(object x in xs){
  if (x.someCondition) continue;
  iter.MoveNext();
  int n = iter.current();
  x.someProp = n;
  etc...
}
link|improve this question

What exactly are you trying to do? The whole point in IEnumerable<T> is to allow iteration, and a foreach loop is the most efficient way of doing this. – Will Vousden Feb 12 '10 at 2:11
@Zakalwe, I want to iterate two enumerables at once. The foreach is moving through the first one, if it meets a condition, I need the next int (just an example, not really an int). – Mark Feb 12 '10 at 2:38
feedback

4 Answers

up vote 5 down vote accepted

You can get a reference to the Enumerator, using the GetEnumerator method, then you can use the MoveNext method to move on, and use the Current property to access your elements:

var enumerator = getInt().GetEnumerator();
while(enumerator.MoveNext())
{
    int n = enumerator.Current;
    Console.WriteLine(n);
}
link|improve this answer
1  
Right. But what benefit are you get using this instead foreach? – Mendy Feb 12 '10 at 1:17
It allows you to do special processing on, say, the first few elements, or to stop entirely after processing however many, etc. Basically it gives you a little more versatility. – Anon. Feb 12 '10 at 1:20
3  
@Anon: you can do the same with foreach. – Mendy Feb 12 '10 at 1:25
1  
Elaborate on how you'd process some elements of the enumeration, go off and do something else entirely, and then come back and finish processing the rest with a foreach. – Anon. Feb 12 '10 at 1:31
2  
@Anon: like this: int i = 0; foreach(var x in y) { Process(x); i++; if (i == 5) GoOffAndDoSomethingDifferent(); }. See what happens there? You process the first few, then you go off and do something else entirely, and then you come back and finish processing the rest. "Go off and do something else entirely, pick up where you left off when it is finished" is a description of an operation we usually think of as "call a method". – Eric Lippert Feb 12 '10 at 2:40
show 6 more comments
feedback

My advice: don't mess around with the enumerators at all. Characterize your problem as a series of operations on sequences. Write code to express those operations. Let the sequence operators take care of managing the enumerators.

So let's see if I've got this straight. You have two sequences. Let's say { 2, 3, 5, 7, 12 } and { "frog", "toad" }. The logical operation you want to perform is, say "go through the first sequence. Every time you find a number divisible by three, get the next item in the second sequence. Do something with the resulting (number, amphibian) pair."

Easily done. First, filter the first sequence:

var filtered = firstSequence.Where(x=>x%3 == 0);

Next, zip the filtered sequence with the second sequence:

var zipped = filtered.Zip(
             secondSequence, 
             (y, z)=> new {Number = x, Amphibian = y});

And now you can iterate over the zipped sequence and do whatever you want with the pairs:

foreach(var pair in zipped)
    Console.WriteLine("{0} : {1}", pair.Number, pair.Amphibian);

Easy peasy, no messing about with enumerators.

link|improve this answer
@Eric, thanks, I like that, this is extremely close to what I need. I spend more time programming in python and it is very similar to how I'd do it there (I need to study up on the capabilities of C#). I'm curious though, what are the potential pitfalls of enumerators? – Mark Feb 12 '10 at 3:11
4  
@Mark: (1) people forget to dispose them. (2) enumerators emphasize how the code works rather than what it is for -- reading code with enumerators is like looking at a description of a drill motor when what you want to describe is the resulting hole. They are certainly sometimes necessary, but I would much rather express my operations at a higher level of abstraction than one where I have to explicitly keep track of multiple "cursors" in multiple sequences. – Eric Lippert Feb 12 '10 at 3:21
1  
@Eric: I wonder about the colons here new {Number: x, Amphibian: y}. Is this JavaScript or C#? :) – Mendy Feb 12 '10 at 3:23
2  
@Eric, one caveat to your approach is that if this is acting on a large volume of in memory data, the may be a performance gain had by manually iterating the two lists concurrently... If it's a small amount of data or performance isn't a concern then I choose the elegant code (i.e. yours) over the nitty gritty code. – Jason D Feb 12 '10 at 3:33
2  
@Jason: all that Zip does is allocate two enumerators and run down them. The overhead should be tiny. Remember, the sequence operators are lazy; they don't realize their results all at once, they just pull from their source sequences on an as-requested basis. – Eric Lippert Feb 12 '10 at 4:08
show 6 more comments
feedback

How about this?

IEnumerator<int> iter = obj.getInt();
using(iter) {
    while(iter.MoveNext()) {
        DoSomethingWith(iter.Current)
    }
}
link|improve this answer
2  
I don't think this will compile: MoveNext is on IEnumerator, not IEnumerable. You need to add a GetEnumerator() call. – itowlson Feb 12 '10 at 2:02
@itowlson, that was exactly what I was missing! – Mark Feb 12 '10 at 2:50
@itowlson -- You're right, my bad. Typo fixed. – zildjohn01 Feb 12 '10 at 3:10
feedback

You can use this extension method

public static class GenericIEnumerableExtensions
{
    public static void ForEach<T>(this IEnumerable<T> collection, Action<T> action)
    {
        foreach (var item in collection)
        {
            action(item);
        }
    }
}

Like this

IEnumerable<int> iter = getInt();
iter.ForEach(x => Console.WriteLine(x));
iter.ForEach(Console.WriteLine);          // A shortcut to the above syntax.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.