Boolean.TryParse tries to convert string to Boolean : Boolean « Data Types « VB.Net






Boolean.TryParse tries to convert 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
         Dim flag As Boolean

         If Boolean.TryParse(value, flag) Then
            Console.WriteLine("'{0}' --> {1}", value, flag)
         Else
            Console.WriteLine("Unable to parse '{0}'.", 
                              If(value Is Nothing, "<null>", value))
         End If         
      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.Parse converts string to Boolean