vote up 5 vote down star

Check out this test:

[TestFixture]
public class Quick_test
{
   [Test]
   public void Test()
   {
      Assert.AreEqual(0, GetByYield().Count());
      Assert.AreEqual(0, GetByEnumerable().Count());
   }

   private IEnumerable<string> GetByYield()
   {
      yield break;
   }

   private IEnumerable<string> GetByEnumerable()
   {
      return Enumerable.Empty<string>();
   }
}

When I write stub methods I generally use the Enumerable.Empty way of doing it. I stumbled across some old code I wrote where I did it the yield way.

This got me to wondering:

  • Which is more visually appealing to other developers?
  • Are there any hidden gotchas that would cause us to prefer one over the other?

Thanks!

flag

Not directly related to the question; but as you seem to use MbUnit, there is a dedicated assertion for verifying empty enumerations: Assert.IsEmpty(GetByYield()). It's probably more readable than using the classic equality assertion against the number of items. – Yann Trevin Aug 28 at 7:49

3 Answers

vote up 4 vote down check

I would prefer any method that delivers the clearest meaning to the developer. Personally, I don't even know what the yield break; line is does, so returning 'Enumerable.Empty();` would be preferred in any of my code bases.

link|flag
I do know what yield break does, but I still think Enumerable.Empty() is a much clearer expression of intent. – Will Dean Dec 5 '08 at 22:06
vote up 1 vote down

Enumerable.Empty : the documentation claims that it "caches an empty sequence". Reflector confirms. If caching behavior matters to you, there's one advantage for Enumerable.Empty

link|flag
vote up 1 vote down

Even faster might be:

T[] e = {};
return e;
link|flag
That bumps us from one-liners to two. Maybe this would be another alternative along that same thought? return new string[0]; – Rob Dec 5 '08 at 21:31

Your Answer

Get an OpenID
or

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