Some test text!
Dotnet / FAQ / How should I handle the memory management in .NET?
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.
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales