ExcelPatternTool
ExcelPatternTool copied to clipboard
Excel表格-数据库互导工具
Results
1
ExcelPatternTool issues
Sort by
recently updated
recently updated
newest added
``` Importer import = new Importer(); var ext = Path.GetExtension(file1); if (ext.Equals(".xlsx", StringComparison.OrdinalIgnoreCase)) { import.LoadXlsx(File.ReadAllBytes(file1)); } else { import.LoadXls(File.ReadAllBytes(file1)); } var importOption = new ImportOption(0, 0); var result = import.Process(importOption).ToList();...
bug