How to open Microsoft PowerPoint with C#

1 Answer

0 votes
using System.Diagnostics;

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


/*
run:

 
*/

 



answered Aug 10, 2018 by avibootz

Related questions

1 answer 221 views
1 answer 223 views
223 views asked Aug 10, 2018 by avibootz
1 answer 189 views
189 views asked Aug 10, 2018 by avibootz
1 answer 176 views
1 answer 202 views
1 answer 193 views
1 answer 197 views
...