No. Btw, how much memory did you consume on your computer when running the above code?
for (int rownum = 0; rownum < 5000; rownum++)
{
IRow row = worksheet.CreateRow(rownum);
for (int celnum = 0; celnum < 1000; celnum++)
{
ICell Cell = row.CreateCell(celnum);
Cell.SetCellValue("Cell: Row-" + rownum + ";CellNo:" + celnum);
}
}
I'm afraid even this part takes a lot of memory. It's 5000*1000=5,000,000 cells.