问题 I have a question. Imagine that in vb.net, fill a array of structure with a lot of items. For example, here I declare the structure called Persons: Public structure Persons Dim name as string Dim age as integer End structure Then, I declare a variable that is a array of persons, for make a list of friends, like this: Dim friends() as Persons friends(0).name = "Sebastian" friends(0).age = 19 friends(1).name = "Michael" friends(1).age = 34 ... So, there are any form to locate where is the