Ramco Ramco

Ramco Ramco

  • 442
  • 3.4k
  • 517.2k

Loop the Process

Nov 28 2022 2:53 AM

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)