Truth table for Not : Not « Language Basics « VB.Net






Truth table for Not

Truth table for Not
Imports System

Public Class MainClass

    Shared Sub Main(ByVal args As String())

      ' create truth table for Not
      Console.Write("Not" & vbCrLf & "Not False: " & _
         (Not False) & vbCrLf & "Not True: " & (Not True) & _
         vbCrLf & vbCrLf)
    End Sub
End Class

           
       








Related examples in the same category

1.If with not Equals If with not Equals