Single.ToString converts single value to string representation using the specified format.
Module Example
Public Sub Main()
Dim numbers() As Single = {1.3, -123456.1234, 1.1234E21,-1.1234e-05}
Dim specifiers() As String = { "C", "E", "e", "F", "G", "N", "P", _
"R", "#,000.000", "0.###E-000", _
"000,000,000,000.00###"}
For Each number As Single In numbers
Console.WriteLine("Formatting of {0}:", number)
For Each specifier As String In specifiers
Console.WriteLine(" {0,5}: {1}", _
specifier, number.ToString(specifier))
Next
Next
End Sub
End Module
Related examples in the same category