Allow pdf export to .Net memorystream

I must correct my comment: it is already working … the following code shows how it works for me:

----- schnipp ------
System.IO.MemoryStream stream = new System.IO.MemoryStream();
ExportConfiguration exportConfig = new ExportConfiguration(LlExportTarget.Pdf, stream, LL.AutoProjectFile);
LL.Export(exportConfig);
----- schnapp -----