Exemple #1
0
        private static string PrintComplex(localhost.Complex c)
        {
            string result;

            if (c.Imag >= 0)
            {
                result = $"{c.Real}+{c.Imag}i";
            }
            else
            {
                result = $"{c.Real}{c.Imag}i";
            }
            return(result);
        }
Exemple #2
0
        static void Main(string[] args)
        {
            localhost.MathServiceClient mc = new localhost.MathServiceClient();
            Console.WriteLine("10 + 5 = " + mc.Add(10, 5));
            Console.WriteLine("10 + 5 = " + mc.Add(10, 5));
            localhost.Complex c1 = new localhost.Complex();
            c1.Real = 10;
            c1.Imag = 5;
            localhost.Complex c2 = new localhost.Complex();
            c2.Real = 5;
            c2.Imag = -7;
            Console.WriteLine($"{PrintComplex(c1)} + {PrintComplex(c2)} = {PrintComplex(mc.AddComplex(c1, c2))}");
            Console.WriteLine("Count: " + mc.GetCounter());

            Console.ReadLine();
        }