Hi
I have below code & i want that the process should be in loop . It should repeat 10 times
public static int Start(string processName) { var process = Process.Start("chrome.exe", @processName); return process.Id; }
Thanks