コード例 #1
0
        public void TestMethod3()
        {
            ICalculator worker = new Functions();
            int         result = worker.Sum("5;\\25;-19", new[] { ";", "\\\\" });

            Console.WriteLine(string.Format("Result of the Summation = {0}", result));
        }