79400645

Date: 2025-01-30 17:00:16
Score: 1
Natty:
Report link

Retrieving data cell by cell can be very slow. If you need detailed access to cell properties, use this method. However, for batch operations, it's much faster to use DataTables:

WorkBook wb = WorkBook.Load(file.FileFullPath);
WorkSheet ws = wb.DefaultWorkSheet;

DataTable dt = ws.ToDataTable(true);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user3367781