1Imports System
2Imports System.Collections
3Imports System.Reflection
4
5Namespace MethodInvocation16
6    Class T
7        Inherits ArrayList
8
9        ReadOnly Property Length() As Integer
10            Get
11                Return Count
12            End Get
13        End Property
14    End Class
15
16    Class Test
17        Shared Function Main() As Integer
18
19        End Function
20    End Class
21End Namespace