public readonly toString() as String:
Returns a string representation of the complex number.
A string in the format real + imaginaryj.
real + imaginaryj
c = Complex<Double>(3, 4) print(c.toString()) # Output: 3 + 4j