Is there a way to get the number of yield returns from within a function without keeping a counter variable? For instance?
IEnumerable<someobject> function
{
for loop
yield return something
int numberreturned = ....
}
|
Is there a way to get the number of yield returns from within a function without keeping a counter variable? For instance?
| ||||
|
feedback
|
|
That would defeat the purpose of Using Streams work the same way. To compute the length of a stream, you have to exhaust it, and you might never return from doing that. After all, the data could come from an infinite source (e.g. /dev/zero). | ||||
|
feedback
|
|
you could use the extension method count on the the IEnumerable<> that your function returns
| |||||
feedback
|
|
You could use the I think that If you want a more complex iterator then you might implement that in a more explicit manner. | |||
feedback
|
|
No. This is not possible without a counter -- there is no way to access the returned stream from within the function itself. (If it were possible, I wonder what sort of strange semantics/quirks it would entail?) However, this is perfectly okay (if questionable) with a counter, even if the question does not desire such a response ;-) Remember that this form of construct is "magic" around closures invoked when the next item in the stream (iterator) is required -- that is, flow control leaves and re-enters at the
Happy coding. | ||||
|
feedback
|