Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C#: yield return range/collection

Tags:

yield

c#

.net

I use the yield return keyword quite a bit, but I find it lacking when I want to add a range to the IEnumerable. Here's a quick example of what I would like to do:

IEnumerable<string> SomeRecursiveMethod() {     // some code      // ...     yield return SomeRecursiveMethod(); } 

Naturally this results in an error, which can be resolved by doing a simple loop. Is there a better way to do this? A loop feels a bit clunky.

like image 365
André Haupt Avatar asked Mar 24 '11 07:03

André Haupt


1 Answers

No, there isn't I'm afraid. F# does support this with yield!, but there's no equivalent in C# - you have to use the loop, basically. Sorry... I feel your pain. I mentioned it in one of my Edulinq blog posts, where it would have made things simpler.

Note that using yield return recursively can be expensive - see Wes Dyer's post on iterators for more information (and mentioning a "yield foreach" which was under consideration four years ago...)

like image 171
Jon Skeet Avatar answered Sep 27 '22 22:09

Jon Skeet