Skip to content

Commit 9066010

Browse files
committed
Updated the Performance metrics Nuget version
1 parent 339acb5 commit 9066010

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The following system configurations were used for benchmarking:
1818
* **Processor:** 11th Gen Intel(R) Core(TM)
1919
* **RAM:** 16GB
2020
* **.NET Version:** .NET 8.0
21-
* **Syncfusion<sup>&reg;</sup> Version:** [Syncfusion.PresentationRenderer.Net.Core v30.1.37](https://www.nuget.org/packages/Syncfusion.PresentationRenderer.Net.Core/30.1.37)
21+
* **Syncfusion<sup>&reg;</sup> Version:** [Syncfusion.PresentationRenderer.Net.Core v31.1.17](https://www.nuget.org/packages/Syncfusion.PresentationRenderer.Net.Core/31.1.17)
2222

2323
## PowerPoint to image conversion
2424

Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Performance-metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The following system configurations were used for benchmarking:
1818
* **Processor:** 11th Gen Intel(R) Core(TM)
1919
* **RAM:** 16GB
2020
* **.NET Version:** .NET 8.0
21-
* **Syncfusion<sup>&reg;</sup> Version:** [Syncfusion.PresentationRenderer.Net.Core v30.1.37](https://www.nuget.org/packages/Syncfusion.PresentationRenderer.Net.Core/30.1.37)
21+
* **Syncfusion<sup>&reg;</sup> Version:** [Syncfusion.PresentationRenderer.Net.Core v31.1.17](https://www.nuget.org/packages/Syncfusion.PresentationRenderer.Net.Core/31.1.17)
2222

2323
## PowerPoint to PDF conversion
2424

Document-Processing/PowerPoint/PowerPoint-Library/NET/Performance-metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The following system configurations were used for benchmarking:
1818
* **Processor:** 11th Gen Intel(R) Core(TM)
1919
* **RAM:** 16GB
2020
* **.NET Version:** .NET 8.0
21-
* **Syncfusion<sup>&reg;</sup> Version:** [Syncfusion.Presentation.Net.Core v30.1.37](https://www.nuget.org/packages/Syncfusion.Presentation.Net.Core/30.1.37)
21+
* **Syncfusion<sup>&reg;</sup> Version:** [Syncfusion.Presentation.Net.Core v31.1.17](https://www.nuget.org/packages/Syncfusion.Presentation.Net.Core/31.1.17)
2222

2323
## Open and save Presentation
2424

Document-Processing/Word/Word-Library/NET/Word-document/Split-Word-documents.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ using(WordDocument document = new WordDocument(fileStreamPath, FormatType.Docx))
4242
//Create new Word document
4343
WordDocument newDocument = new WordDocument();
4444
//Add cloned section into new Word document
45-
newDocument.Sections.Add(section.Clone());
45+
newDocument.Sections.Add(document.Sections[i].Clone());
4646
//Saves the Word document to MemoryStream
4747
FileStream outputStream = new FileStream("Section" + i + ".docx", FileMode.OpenOrCreate, FileAccess.ReadWrite);
4848
newDocument.Save(outputStream, FormatType.Docx);
@@ -62,7 +62,7 @@ using (WordDocument document = new WordDocument(@"Template.docx"))
6262
//Create new Word document
6363
WordDocument newDocument = new WordDocument();
6464
//Add cloned section into new Word document
65-
newDocument.Sections.Add(section.Clone());
65+
newDocument.Sections.Add(document.Sections[i].Clone());
6666
//Save and close the new Word documet
6767
newDocument.Save("Section" + i + ".docx");
6868
newDocument.Close();

0 commit comments

Comments
 (0)