How to open Microsoft Excel with C#

1 Answer

0 votes
using System.Diagnostics;

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


/*
run:

 
*/

 



answered Aug 10, 2018 by avibootz

Related questions

1 answer 207 views
1 answer 188 views
188 views asked Aug 10, 2018 by avibootz
1 answer 178 views
178 views asked Aug 10, 2018 by avibootz
1 answer 269 views
1 answer 232 views
2 answers 509 views
2 answers 312 views
...