Mega Code Archive

 
Categories / VB.Net / Data Types
 

(CBool(5) And CBool(8)) with (5 And 8)

Imports System Imports System.Data Imports System.Collections public class MainClass    Shared Sub Main()         Console.WriteLine("5 And 8: " + (CBool(5) And CBool(8)).ToString)         Console.WriteLine("5 And 8: " + (5 And 8).ToString())    End Sub End Class