In reference to this thread: Aspose.cells.workbook does not implement System.IDisposable
It seems that in previous version of Aspose.Cells, Workbook does not implements IDisposable, but in current version (8.6.1.0), it does implements IDisposable.
In the referenced thread above, one of the comment was “Workbook object does not use any unmanaged resources and it is purely .NET object.”, if this is true, why does it now implements IDisposable? Are there resources that needs to be disposed of in the current version?
Reason why I’m asking is because my logic may change depending on whether or not Workbook needs to be disposed of. For example, I may need to expect ObjectDisposedException, or if it needs to be disposed I may store it in memory as a byte array instead of a reference to Workbook…etc…
Thanks,
Minh