Looking for some help to figure out on how can I save the output of my C# program into the word file?
- class Test
- {
- static void Main(string[] args)
- {
- Application app = new word.Application();
- Document doc = app.Documents.Open(filePath);
-
- Console.WriteLine();
-
- Doc.close();
- App.Quit(); } }