Friday 16 September 2011

Integer boolean calculation: Or, And, Xor, Not

public class Test
   public Shared Sub Main
        Dim As Integer
    
    
        I = Or 4
        Console.WriteLine(I)
    
        I = And 4
        Console.WriteLine(I)
    
        I = Xor 3
        Console.WriteLine(I)
    
        I = Not 5
        Console.WriteLine(I)
   End Sub
End class

No comments:

Post a Comment