Have now had a look at the source code, and I think the problem's in ExcelOpenXMLReader.cs, ReadSheetRow. There's a section
Will now find out how to post this on GitHub...
if (_emptyRowCount != 0)
{
_cellsValues = new object[sheet.ColumnsCount];
_emptyRowCount--;
_depth++;
return true;
}
Once _emptyRowCount < 0 this will loop.Will now find out how to post this on GitHub...