In this example there are 2 instances created of the SomeClass Class. Depending on the type given the 2 instances have a different interface:
Dim theStringClass As New SomeClass(Of String)
Dim theIntegerClass As New SomeClass(Of Integer)
The most famous generic class is List(of )