I have 2 MemoryStreams (ms1 and ms2), how to create a Pdf from those MemoryStream?
MemoryStream ms1 = new MemoryStream();
myReport1.ExportPdfToMemoryStream(ms1); // --> Pdf memorystream
MemoryStream ms2 = new MemoryStream();
myReport2.ExportPdfToMemoryStream(ms2); // --> Pdf memorystream
I need to attach ms2 to ms1 then create a .Pdf from it.
Please help
thanks