コード例 #1
0
 static void Main(string[] args)
 {
     var bench = new Benchmarker();
     var chall = new _48_SelfPowers();
     string result = "";
     bench.Benchmark(() => result = chall.Run());
     Console.WriteLine(result);
     Console.ReadLine();
 }
コード例 #2
0
        static void Main(string[] args)
        {
            var    bench  = new Benchmarker();
            var    chall  = new _48_SelfPowers();
            string result = "";

            bench.Benchmark(() => result = chall.Run());
            Console.WriteLine(result);
            Console.ReadLine();
        }