Mega Code Archive
Implicit conversion of a signed byte to a complex number
Imports System.Numerics
Imports System
Module Example
Public Sub Main()
Dim sbyteValue As SByte = -12
Dim c1 As System.Numerics.Complex = sbyteValue
Console.WriteLine(c1)
End Sub
End Module