You can get the row and column count using ExcelPackage (EPPlus.dll version 3.0.0.2) as below:
var rowCnt = worksheet.Dimension.End.Row;
var colCnt = worksheet.Dimension.End.Column;
You can get the row and column count using ExcelPackage (EPPlus.dll version 3.0.0.2) as below:
var rowCnt = worksheet.Dimension.End.Row;
var colCnt = worksheet.Dimension.End.Column;