1 2 3 4 5 6
// using System.Diagnostics; Process P = new Process(); P.StartInfo.FileName = "notepad.exe"; // hier kann z.B. eine Textdatei mit übergeben werden // P.StartInfo.Arguments = "Test.txt"; P.Start();
P.StartInfo.FileName = "C:\\test.txt";