On VB: Use Iterators in VB Now
Posted by: FTPOnline .NET Channel,
on 01 Feb 2009 |
View original | Bookmarked: 0 time(s)
Iterators are a crucial part of modern programming, not least because they provide the basis for collection traversal using For Each loops. Language Integrated Query (LINQ) adds to the importance of iterators, as iterators are the source of IEnumerable(Of T) that forms the backbone of LINQ. Learn how to take advantage of them in your code with several different techniques for creating your own iterators in VB....