Contact: aviboots(AT)netvision.net.il
41,301 questions
53,811 answers
573 users
Module Module1 Sub Main() Dim b As Boolean b = True Console.WriteLine(b) b = Not b Console.WriteLine(b) b = Not b Console.WriteLine(b) End Sub End Module ' run: ' ' True ' False ' True