Understanding the Benefits of Iterators in Code
Iterators have plenty of usages, and this chapter describes them all in detail. Before studying the many ways iterators can be useful, though, a better idea is understanding why they allow you to write better and more responsive code. Imagine that you have a collection of items of type Person
and a method that iterates through the collection the way you know. Listing 16.1 demonstrates how to reproduce this simple scenario in code.
Public Class Person Public Property FirstName As String Public Property LastName As String Public Property Age As IntegerEnd ClassPublic Class People Inherits List(Of Person) ...
Get Visual Basic 2015 Unleashed now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.