Problem with opening a large EXCEL file. For example, when I declare XLWorkbook, it's going to load ALL data to this object. I decided to read it partly, because, it's returned an error: outOfMemory. Is it possible to read part with range? Is there any more methods?
Sample:
using ClosedXML.Excel;
public void FileOpen(string path)
{
var workBook = new XLWorkbook(path);
// . . .
}