using IronPPT;
// Create new PowerPoint presentation
var document = new PresentationDocument();
// Export PowerPoint presentation
document.Save("output.pptx");Imports IronPPT
' Create new PowerPoint presentation
Private document = New PresentationDocument()
' Export PowerPoint presentation
document.Save("output.pptx")



