diff --git a/Sections/Remove-section/.NET/Remove-section/Program.cs b/Sections/Remove-section/.NET/Remove-section/Program.cs index 0adc0f3a..fc47daf1 100644 --- a/Sections/Remove-section/.NET/Remove-section/Program.cs +++ b/Sections/Remove-section/.NET/Remove-section/Program.cs @@ -7,6 +7,6 @@ //Remove the second section from the PowerPoint presentation. pptxDoc.Sections.Remove(pptxDoc.Sections[1]); //Save the PowerPoint Presentation as stream. -using FileStream outputStream = new(Path.GetFullPath(@"Ouptut/Result.pptx"), FileMode.Create, FileAccess.ReadWrite); +using FileStream outputStream = new(Path.GetFullPath(@"Output/Result.pptx"), FileMode.Create, FileAccess.ReadWrite); pptxDoc.Save(outputStream); pptxDoc.Close(); \ No newline at end of file diff --git a/Slides/Add-slide-with-existing-slide-layout/.NET/Add-slide-with-existing-slide-layout/Data/Template.pptx b/Slides/Add-slide-with-existing-slide-layout/.NET/Add-slide-with-existing-slide-layout/Data/Template.pptx index 57df805f..ee93b206 100644 Binary files a/Slides/Add-slide-with-existing-slide-layout/.NET/Add-slide-with-existing-slide-layout/Data/Template.pptx and b/Slides/Add-slide-with-existing-slide-layout/.NET/Add-slide-with-existing-slide-layout/Data/Template.pptx differ