Sunday 4 November 2012

Sart process in c#

Start process in c#


//add the namespace
using System.Diagnostics;


//now write the code lets i want to start the process of cmd 


      public void StartCmd()
        {   Process.Start("cmd");

        }

1 comment: