How to open Microsoft Word with C#

1 Answer

0 votes
using System.Diagnostics;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            Process.Start("WINWORD.EXE");
        }
    }
}


/*
run:

 
*/

 



answered Aug 10, 2018 by avibootz

Related questions

1 answer 216 views
1 answer 171 views
1 answer 197 views
197 views asked Aug 10, 2018 by avibootz
1 answer 219 views
219 views asked Aug 10, 2018 by avibootz
1 answer 201 views
1 answer 192 views
1 answer 191 views
...