Implicit conversion of a 64-bit signed integer to a complex number.
Imports System.Numerics
Imports System
Module Example
Public Sub Main()
Dim longValue As Long = 959999
Dim c1 As System.Numerics.Complex = longValue
Console.WriteLine(c1)
End Sub
End Module