Some test text!

Search
Hamburger Icon

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

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: Chat with us