how can i convert PresentationEx object to MemoryStream for .net C#.
Hi,
Thanks for your interest in Aspose.Slides.
Please try using following code snippet to save presentation is streams. Please also visit this [thread link](https://net-informations.com/q/faq/memory.htm)
for your reference.
Presentation pres = new Presentation(path+“Gradient.ppt”);
MemoryStream PresStream =new MemoryStream();
pres.Write(PresStream);
Many Thanks,