Example #1
0
        public void XmlReadSetUnit()
        {
            string       path     = Path.Combine(resource, "test.xlsx");
            ReadExcelKit excelKit = new ReadExcelKit(path);

            excelKit.AddConfig(config =>
            {
                config.SheetIndex = 1;
                config.StartRow   = 1;
                //config.EndRow = 100;
                //config.StartColumn = "B";
                //config.EndColumn = "B";
            });
            var rows = excelKit.XmlReaderSet();
        }