Module Module1 Sub Main() Dim A As Boolean = False Dim B As Boolean = True Dim C As Boolean = True If (Not A) Then Console.WriteLine("Not A") End If If (B Or C) Then Console.WriteLine("B Or C") End If If (B And C) Then Console.WriteLine("B And C") End If End Sub End Module
Not A B Or C B And C