how to get xls file from a ZipArchiveEntry EPPlus C#
问题 i'am trying to get an xls file from an ZipArchive but cant get it with EPPLUS foreach (ZipArchiveEntry entry in archive.Entries) { if (entry != null) { string filepath = entry.FullName; FileInfo fileInfo = new FileInfo(filepath); //here i got the excel package with the xls file inside the excelPackage using (ExcelPackage excelPackage = new ExcelPackage(fileInfo)) { //but here impossible de get the worksheet or workbook inside or anything else ExcelWorksheet worksheet = excelPackage.Workbook