Processes in C#

Start new process in C#  
Process mayaProcess = new Process();
mayaProcess.StartInfo.FileName = "wordpad.exe";
mayaProcess.StartInfo.Arguments = mayaScenePath;
mayaProcess.Start();
mayaProcess.WaitForExit();

No comments: