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

            excelKit.AddConfig(config =>
            {
                config.SheetIndex    = 1;
                config.ColumnNameRow = 1;
                config.StartRow      = 2;
                //config.EndRow = 100;
                //config.StartColumn = "B";
                //config.EndColumn = "B";
            });
            var dics = excelKit.XmlReaderDictionary();
        }