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);