Boolean.Parse converts string to Boolean : Boolean « Data Types « VB.Net






Boolean.Parse converts string to Boolean

 

Module Example
   Public Sub Main()
      Dim values() As String = { Nothing, String.Empty, "True", "False", 
                                 "true", "false", "    true    ", "0", 
                                 "1", "-1", "string" }
      For Each value In values
         Try
            Dim flag As Boolean = Boolean.Parse(value)
            Console.WriteLine("'{0}' --> {1}", value, flag)
         Catch e As ArgumentException
            Console.WriteLine("Cannot parse a null string.")
         Catch e As FormatException
            Console.WriteLine("Cannot parse '{0}'.", value)
         End Try         
      Next                                     
   End Sub
End Module

   
  








Related examples in the same category

1.Convert boolean to int valueConvert boolean to int value
2.Convert int value to Boolean valueConvert int value to Boolean value
3.Convert to int back and forthConvert to int back and forth
4.(CBool(5) And CBool(8)) with (5 And 8)(CBool(5) And CBool(8)) with (5 And 8)
5.Insert Boolean to StringBuilder
6.Generic and nongeneric versions of the CompareTo method for Boolean value
7.Convert string to boolean
8.Convert to boolean then convert boolean to Byte
9.Boolean.TryParse tries to convert string to Boolean