Newer
Older
ClosedXML / ClosedXML_Sandbox / Program.cs
@Amir Amir on 9 Sep 2016 721 bytes Project hierarchy cleanup
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using ClosedXML.Excel;
using ClosedXML;
using System.Drawing;
using System.IO;
using DocumentFormat.OpenXml.Spreadsheet;
using DocumentFormat.OpenXml;
namespace ClosedXML_Sandbox
{
    class Program
    {
        private static void Main(string[] args)
        {
            //var wb = new XLWorkbook();
            //wb.SaveAs(@"c:\temp\saved.xlsx");
            //Console.WriteLine("Done");
            PerformanceRunner.TimeAction(PerformanceRunner.RunInsertTable);

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