Language Basics VB.Net

Module Module1
    Sub Main()
        Dim n? As Integer
        Console.WriteLine(n Is Nothing)
        n = 4
        Console.WriteLine(n Is Nothing)
        n = Nothing
        Console.WriteLine(n IsNot Nothing)
    End Sub
End Module