Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,950 questions

51,892 answers

573 users

How to use Boolean variable in VB.NET

3 Answers

0 votes
Imports System
 
Public Module Program
    Public Sub Main(args() As string)
		Dim lang As String = "vb"
        Dim salary As Double = 9500
 
        Dim isVB As Boolean = (lang = "vb" And salary >= 8300)
 
        If isVB Then
            Console.WriteLine(True)
        Else
            Console.WriteLine(False)
        End If
     End Sub
End Module
 
 
 
' run:
' 
' True
'

 



answered Sep 22, 2018 by avibootz
edited May 4, 2024 by avibootz
0 votes
Imports System
 
Public Module Program
    Public Sub Main(args() As string)
		Dim lang As String = "vb"
        Dim salary As Double = 9000
 
        Dim isVB As Boolean = (lang = "vb" And salary >= 8300)
 
        Console.WriteLine(isVB)
     End Sub
End Module
 
 
 
' run:
' 
' True
'

 



answered Sep 22, 2018 by avibootz
edited May 4, 2024 by avibootz
0 votes
Imports System
 
Public Module Program
    Public Sub Main(args() As string)
    	Dim b As Boolean
  
        b = True
  
        If (b) Then
            Console.WriteLine("True")
        End If
  
        b = False
        If (b) Then
            Console.WriteLine("True")
        Else
            Console.WriteLine("False")
        End If
  
        If (Not b) Then
            Console.WriteLine("True")
        End If
    End Sub
End Module
 
 
 
' run:
' 
' True
' False
' True
'

 

 



answered May 4, 2024 by avibootz

Related questions

1 answer 142 views
1 answer 234 views
1 answer 165 views
2 answers 224 views
1 answer 183 views
1 answer 190 views
2 answers 199 views
...