using Microsoft.Office.Interop.PowerPoint
            PowerPoint.Application pptApp;
            PowerPoint.Presentation pptDoc;
           
            path = @"d:\test.ppt";            pptApp = new PowerPoint.ApplicationClass();            PowerPoint.PpSaveAsFileType format = PowerPoint.PpSaveAsFileType.ppSaveAsDefault;            pptDoc.SaveAs(path, format, Microsoft.Office.Core.MsoTriState.msoFalse);
            pptDoc.Close();            pptApp.Quit();我只会把生成的ppt保存到文件当中,
谁知道如何把PowerPoint.Presentation直接放到一个流里面吗,不用保存到硬盘文件上。