Thank you for a quick response.
As far as I understand you the desired procedure for disposing memory of all EasyXLS objects should be a simple one like this:
/////////////////////////////////////////////////////////////////////
ExcelDocument xls = new ExcelDocument();
// Doing something with ExcelDocument, ExcelTable, ExcelCell
xls.Dispose();
System.GC.Collect();
/////////////////////////////////////////////////////////////////////
Am I right?