Generics VB.Net

Public Class Car
End Class
Module Program
  Sub Main()
    Dim myCars As New List(Of Car)
    myCars.Add(New Car())
    Console.WriteLine(myCars.Count)
    Dim MyInts As New List(Of Integer)
    MyInts.Add(50)
    Dim val As Integer = MyInts.Count
    Console.WriteLine(MyInts.Count)
  End Sub
End Module