Mega Code Archive
Implicit conversion of an unsigned byte to a complex number
Imports System.Numerics
Imports System
Module Example
Public Sub Main()
Dim byteValue As Byte = 122
Dim c1 As System.Numerics.Complex = byteValue
Console.WriteLine(c1)
End Sub
End Module