I am a VB.Net developer, kind of newbie in C#, While looking in C# documentation I came through Iterators and Generators, could not fully understand the use, I there anyone who can explain (in vb perceptive; if possible)
feedback
|
|
Unfortunately there's no yield equivalent in VB.NET. There's a nice article about emulating it. | |||||
feedback
|
|
Iterators are an easy way to generate a sequence of items, without having to implement Here's a simple example:
Notice the When the compiler encounters an iterator block, it actually rewrites it to a state machine in a class that implements See this article by Jon Skeet for more details on iterators. | |||||
feedback
|