Newer
Older
ClosedXML / ClosedXML_Sandbox / Program.cs
@Francois Botha Francois Botha on 30 May 2017 637 bytes Unknown changes - something to do with line endings?
using System;

namespace ClosedXML_Sandbox
{
    internal class Program
    {
        private static void Main(string[] args)
        {
            Console.WriteLine("Running {0}", nameof(PerformanceRunner.OpenTestFile));
            PerformanceRunner.TimeAction(PerformanceRunner.OpenTestFile);
            Console.WriteLine();

            Console.WriteLine("Running {0}", nameof(PerformanceRunner.RunInsertTable));
            PerformanceRunner.TimeAction(PerformanceRunner.RunInsertTable);
            Console.WriteLine();

            Console.WriteLine("Press any key to continue");
            Console.ReadKey();
        }
    }
}