Convert.ToSingle (Boolean) converts Boolean value to single-precision floating-point number. : Convert to Single « Development « VB.Net






Convert.ToSingle (Boolean) converts Boolean value to single-precision floating-point number.

  

Class Sample
   Public Shared Sub Main()
        Dim flags() As Boolean = { True, False }
        Dim result As Single
        
        For Each flag As Boolean In flags
           result = Convert.ToSingle(flag)
           Console.WriteLine("Converted {0} to {1}.", flag, result)
        Next
    End Sub 
End Class 

   
    
  








Related examples in the same category

1.Convert.ToSingle (Byte) converts 8-bit unsigned integer to single-precision floating-point number.
2.Convert.ToSingle (Decimal) converts decimal number to single-precision floating-point number.
3.Convert.ToSingle (Double) converts double number to single-precision floating-point number.
4.Convert.ToSingle (Int16) converts 16-bit signed integer to floating-point number.
5.Convert.ToSingle (Int32) converts 32-bit signed integer to single-precision floating-point number.
6.Convert.ToSingle (Int64) converts 64-bit signed integer to single-precision floating-point number.
7.Convert.ToSingle (Object) converts object to a single-precision floating-point number.
8.Convert.ToSingle (SByte) converts signed integer to single-precision floating-point number.
9.Convert.ToSingle (String) converts string to single-precision floating-point number.
10.Convert.ToSingle (UInt16) converts 16-bit unsigned integer to single-precision floating-point number.
11.Convert.ToSingle (UInt32) converts 32-bit unsigned integer to single-precision floating-point number.
12.Convert.ToSingle (UInt64) converts 64-bit unsigned integer to single-precision floating-point number.