Implicit conversion of a single-precision floating-point number to a complex number.
Imports System.Numerics
Imports System
Module Example
Public Sub Main()
Dim singleValue As Single = 1.032e-08
Dim c1 As System.Numerics.Complex = singleValue
Console.WriteLine(c1)
End Sub
End Module