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 206 views
1 answer 159 views
1 answer 188 views
188 views asked Aug 10, 2018 by avibootz
1 answer 211 views
211 views asked Aug 10, 2018 by avibootz
1 answer 196 views
1 answer 182 views
1 answer 183 views
...