How to start notepad in C#

1 Answer

0 votes
using System.Diagnostics;

class Program
{
    static void Main() {
         Process.Start("notepad");
    }
}



/*
run:



*/

 



answered Jun 1, 2023 by avibootz

Related questions

1 answer 165 views
1 answer 177 views
177 views asked Oct 13, 2018 by avibootz
1 answer 229 views
229 views asked Oct 13, 2018 by avibootz
1 answer 265 views
...