Tagged Questions
7
votes
6answers
5k views
Can I implement yield return for IEnumerable functions in VB.NET?
In C#, when writing a function that returns an IEnumerble<>, you can use yield return to return a single item of the enumeration and yield break; to signify no remaining items. What is the ...