No need to loop through the Items since you have access to the List:
Code:
For i As Integer = 0 To People.Count - 1
    Debug.WriteLine(People.Items(i).Name)
Next
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.