No need to loop through the Items since you have access to the List:
I would also like to point out that there's no need for a List in this instance since the class only has a single property.Code:For i As Integer = 0 To People.Count - 1 Debug.WriteLine(People.Items(i).Name) Next




Reply With Quote
