Convert.ToSingle (Int32) converts 32-bit signed integer to single-precision floating-point number. : Convert to Single « Development « VB.Net






Convert.ToSingle (Int32) converts 32-bit signed integer to single-precision floating-point number.

  

Class Sample
   Public Shared Sub Main()
        Dim numbers() As Integer = { Int32.MinValue, -1000, 0, 1000, Int32.MaxValue }
        Dim result As Single
        
        For Each number As Integer In numbers
           result = Convert.ToSingle(number)
           Console.WriteLine("Converted the {0} value '{1}' to the {2} value {3}.", _
                             number.GetType().Name, number, _
                             result.GetType().Name, result)
        Next
    End Sub 
End Class 

   
    
  








Related examples in the same category

1.Convert.ToSingle (Boolean) converts Boolean value to single-precision floating-point number.
2.Convert.ToSingle (Byte) converts 8-bit unsigned integer to single-precision floating-point number.
3.Convert.ToSingle (Decimal) converts decimal number to single-precision floating-point number.
4.Convert.ToSingle (Double) converts double number to single-precision floating-point number.
5.Convert.ToSingle (Int16) converts 16-bit signed integer to 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.