Mega Code Archive

 
Categories / C# / Data Types
 

Assign the return value of a method to a Complex variable

using System; using System.Numerics; public class Example {    public static void Main()    {       Complex c4 = Complex.Pow(Complex.One, -1);       Console.WriteLine(c4);    } }