Normally.. in C#, you create the object once, then run converters/processes against/with that object per file.
PdfStandardsConverter converter = new (InFile); <--- on every file.
Normally in C# is...
PdfStandardsConverter converter = new() <-- called once...
converter.convert(InFile, Outfile) <--- called per file.
This is with the newest version of the library. Are there plans to allow something like this? The library is a GC killer right now