Data Type VB.Net Tutorial

Module Module1
    Sub Main()
        Dim testObject As Object
        testObject = Nothing
        Dim tc As New TestClass
        tc = Nothing
    End Sub
    Class TestClass
        Public field1 As Integer
    End Class
End Module