I guess I'm still not following... From your code, you are creating an array correctly with the lines
Dim test() As Boolean
test = New Boolean(0 To 10) {}
To read an element from the array, you simply put the index of the element in the parenthesis:
With the following code, you are correctly looping through all the elements in the array:
[code=vb]
For i As Integer = 0 To test.GetUpperBound(0)
If i >= 0 Then
output &= (test(i))
MessageBox.Show(i & vbTab & output)
End If
Next
[/vb]
However, I don't know what the MessageBox class is. If you replace
MessageBox.Show(i & vbTab & output)
with
msgbox i & vbtab & Output
Then a message box should appear with the appropriate output.
As far as displaying the elements of an array that is within an instance of class, I would need to know more specifics about the class to help you retrieve the element (is it a standard class or one that you created, what are its properties, etc.)