Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Program.cs 555B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Novacode;
  6. using System.Drawing;
  7. namespace ConsoleApplication3
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. // Create a new document.
  14. using (DocX document = DocX.Create(@"Test.docx"))
  15. {
  16. document.InsertParagraph("I cant believe this took so long.");
  17. // Save the document.
  18. document.Save();
  19. }
  20. }
  21. }
  22. }