Contact: aviboots(AT)netvision.net.il
39,938 questions
51,875 answers
573 users
Module Module1 Sub Main() Dim s As String = Nothing If s Is Nothing Then Console.WriteLine("s Is Nothing") End If If IsNothing(s) Then Console.WriteLine("IsNothing(s)") End If End Sub End Module ' run: ' ' s Is Nothing ' IsNothing(s)