Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to optionally return a null with a "return yield" driven iterator?

I would like to return a null in some cases and I don't think this is particular to IEnumerable of type string. Same goes for IEnumerable of type int etc. Thanks

static void Main(string[] args)
{
    var Items = GetItems();

    if (Items != null)
    {
        foreach (var item in Items)
        {
            Console.WriteLine(item);
        }
    }
    else
    {
        Console.WriteLine("<null>");
    }
}

static IEnumerable<string> GetItems()
{
    if (false)
    {
        yield return "Andy";
        yield return "Jennifer";
    }

    return null; // <- Compiler Error:
    // Cannot return a value from an iterator. 
    // Use the yield return statement to return a value,
    // or yield break to end the iteration.
}
share|improve this question

5 Answers

up vote 16 down vote accepted

If you need to things like that (or throw things like ArgumentException immediately), you need to separate your iterator into two methods:

 public IEnumerable<string> GetItems() {
     if (something) return null;
     return GetItemsInternal();
 }

 private IEnumerable<string> GetItemsInternal() {
     // the actual iterator with "yield return" goes here.
 }
share|improve this answer
the answer to what I asked for but mquander likely posted a more correct approach. – andleer Nov 21 '09 at 15:31

You're not using an enumerable as it was intended (to iterate objects in a collection). If you want to keep your code similar to what it is now, you should do something like this:

static void Main(string[] args)
{
    var Items = GetItems();

    foreach (var item in Items) //this will not enter the loop because there are no items in the Items collection
    {
            Console.WriteLine(item);
    }

    //if you still need to know if there were items, check the Count() extension method
    if(Items.Count() == 0)
    {
      Console.WriteLine("0 items returned");
    }


}

static IEnumerable<string> GetItems()
{
    if (false)
    {
        yield return "Andy";
        yield return "Jennifer";
    }

    yield break;
}
share|improve this answer

This just isn't encouraged. When you're talking about a sequence, "null" should generally have the same semantics as "empty list."

Also, it's impossible to design the language to work in the way you'd like it to work here without extra syntax, since what if you were to hit a "yield return [whatever]" and then a "return null?"

share|improve this answer
1  
I agree, it's a matter of intent. Simply falling through the function without hitting a 'yield return' will generate an empty sequence. Resposibilty for checking is the sequence empty belongs to something else. – Binary Worrier Nov 19 '09 at 18:28

There is no way to return a null IEnumerable<T> from within an iterator method. You can return null values in the iterator but not a null IEnumerable<T>

What you could do though is have a wrapper method which either returns null or calls to the real iterator

static IEnumerable<string> GetItems() {
    if (false) {
        return GetItemsCore();
    }
    return null;
}

static IEnumerable<string> GetItemsCore() {
    yield return "Andy";
    yield return "Jennifer";
}
share|improve this answer

There is nothing that prevents you from doing a yield return null;, if it is appropriate (of course, the enumerated type must be nullable).

share|improve this answer
I'd be pissed if I was receiving null from what I thought was IEnumerable. Yes, you could make it a nullable string in the case, but why? – scottm Nov 19 '09 at 18:34
I didn't say that I recommend it, I just said that it's possible. And btw: A string IS a nullable datatype... – Thomas Weller Nov 20 '09 at 4:21
I think the big issue with this approach is that there is no consistancy. What if some elements are null and others have value? What does that indicate? – andleer Nov 21 '09 at 15:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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