You can use Process.Start, like :
using (Process p = new Process())
{
p.StartInfo.FileName = "taskkill";
p.StartInfo.Arguments = "/im notepad.exe /f";
p.StartInfo.CreateNoWindow = true;
p.StartInfo.UseShellExecute = false;
p.Start();
}