vote up 0 vote down star
1

I have this code:

    public IEnumerable<int> Iterator {
        get { if (false) yield return -1; }
    }

It is fairly ugly, but when you try to refactor it to:

    public IEnumerable<int> Iterator {
        get { return null; }
    }

The following code breaks:

foreach (var item in obj.Iterator) {
}

How would you go about cleaning this up?

flag

4 Answers

vote up 4 vote down check

The .NET framework already has a method to do exactly this, by the way (making Jared's code redundant): System.Enumerable.Empty<T>.

link|flag
yerp this is my favorite by far – Sam Saffron Mar 7 at 21:56
But ... its only available with .Net 3.5 – Sam Saffron Mar 7 at 21:58
vote up 6 vote down
public IEnumerable<int> Iterator {
    get { yield break; }
}
link|flag
my new favorite – Will Nov 12 at 19:38
vote up 2 vote down

A better solution would be to define a reusable method for this problem. I keep a method around in my shared library to take care of just this case.

public static class CollectionUtility { 
  public static IEnumerable<T> CreateEmptyEnumerable<T>() {
    yield break;
  }
}

Now in your method you could just call

public static IEnumerable<int> Iterator { 
  get { return CollectionUtility.CreateEmptyEnumerable<int>(); }
}
link|flag
impressive. Much better than yield break;. Yes, I'm being sarcastic. – Will Nov 12 at 19:39
vote up 0 vote down

public IEnumerable Iterator { get { yield break; } }

link|flag

Your Answer

Get an OpenID
or

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