Csharp/C Sharp/Development Class/Start Process

Материал из .Net Framework эксперт
Перейти к: навигация, поиск

Starting a new process: open wordpad

<source lang="csharp"> // Starting a new process.

using System; using System.Diagnostics;

public class StartProcess {

 public static void Main() {  
   Process newProc = Process.Start("wordpad.exe"); 

   Console.WriteLine("New process started."); 

   newProc.WaitForExit(); 

   newProc.Close(); // free resources 

   Console.WriteLine("New process ended."); 
 }  

}


      </source>