Mega Code Archive

 
Categories / C# / Data Types
 

Assign the value returned by an operator to a Complex variable

using System; using System.Numerics; public class Example {    public static void Main()    {       Complex c5 = Complex.One + Complex.One;       Console.WriteLine(c5);    } }