enumerator Questions
4
Solved
I'm writing code that looks similar to this:
public IEnumerable<T> Unfold<T>(this T seed)
{
while (true)
{
yield return [next (T)object in custom sequence];
}
}
Obviously, this m...
Stop asked 13/10, 2008 at 11:31
© 2022 - 2024 — McMap. All rights reserved.