1
Answer

Loop the Process

Ramco Ramco

Ramco Ramco

2y
526
1

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

Answers (1)