I need to read and write data from an Excel spreadsheet. Is there a method to finding out how many rows/columns a certain worksheet has using ExcelPackage? I have the following
int row = _excelSheet.Rows.CurrentRegion.EntireRow.Count; int col = _excelSheet.Columns.CurrentRegion.EntireColumn.Count;