Saturday, 12 July 2014

How to start a process or an application?

To start any process or application use the following syntax:

System.Diagnostics.Process.Start("path");
For example:
System.Diagnostics.Process.Start(@"d:\myapp.exe");  //open myapp.exe


No comments:

Post a Comment