Some test text!

Discord Logo

Chat with us

PDFTron is now Apryse, learn more here.

Dotnet / FAQ / How should I handle the memory management in .NET?

Platform


PDFTron is now Apryse, learn more here.

How should I handle the memory management in .NET?

I have PDF documents with ~2 thousands pages. I tried to force GC.Collect() but this is a performance penalty for me

GC.Collect() is not necessary. You could simply call Dispose() (or Close()) on PDFDoc, PDFDraw, ElementBuilder, ElementWriter, TextExtractor, and other larger objects. All memory will be instantly released. You can also use IDispose pattern (on 'using' C# keyword) to immediately release these resources.

Get the answers you need: Support