Как найти пустые строки в excel с помощью closedxml
как найти и удалить пустые строки в закрытом xml
Что я уже пробовал:
<pre>foreach (IXLRow theRow in theworksheet.Rows()) { int row = theworksheet.LastRowUsed().RowNumber(); if (firstRow) { int cells = 0; foreach (IXLCell cell in theRow.Cells()) { cells++; if (cells > 27) { break; } else { dt3.Columns.Add(cell.Value.ToString()); } } firstRow = false; }