Hello, Aspose!
After inspecting Aspose docs for Aspose.Pdf.Document i find two methods that i can use for release memory.
- classic document.Dispose() method;
- special method document.FreeMemory() description from docs: “Clears memory”.
The question is: Should i call both methods when i want destroy document object (and order of calls, for example we call Dispose() first, after that we call FreeMemory())?
Or .Dispose() enough?