samolulu

Results 1 issues of samolulu

static void DeleteEmptyRow(string excelPath, string excelName, string sheetName) { string path = $"{excelPath}/{excelName}.xlsx"; var rows = MiniExcel.Query(path, useHeaderRow:true, sheetName).ToList(); int line = 1; foreach (IDictionary row in rows) { line...

help wanted