選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }