Starting a new process : Start Process : Development Class C# Source Code


Custom Search

C# Source Code » Development Class » Start Process »

 

Starting a new process









    


// 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."); 
  }  
}




           
       
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Development Class
» Start Process