Imports System
Public Class Example
Public Shared Sub Main(ByVal args As String())
Dim scientificd As Double = 1.23456e4
Console.WriteLine("double scientific notation: " & scientificd)
End Sub
End Class
' run:
'
' double scientific notation: 12345.6
'