C# – Launch notepad.exe and open a file
by admin on Feb.16, 2012, under News
The following example code snippet shows how to launch notepad and open a text file of your choice:
[csharp]
System.Diagnostics.Process.Start("notepad.exe", "config.xml");
[/csharp]