C# Complex Implicit(Int64 to Complex)
Description
Complex Implicit(Int64 to Complex)
Defines an implicit
conversion of a 64-bit signed integer to a complex number.
Syntax
Complex.Implicit(Int64 to Complex)
has the following syntax.
public static implicit operator Complex (
long value
)
Parameters
Complex.Implicit(Int64 to Complex)
has the following parameters.
value
- The value to convert to a complex number.
Returns
Complex.Implicit(Int64 to Complex)
method returns An object that contains the value of the value parameter as its real part and
zero as its imaginary part.
Example
using System;/*from w w w.java 2s.com*/
using System.Numerics;
public class Example
{
public static void Main()
{
long longValue = 12312312312;
System.Numerics.Complex c1 = longValue;
Console.WriteLine(c1);
}
}
The code above generates the following result.