Answers for "check if process is open c#"

C#
0

check if process is open c#

Process[] proc = Process.GetProcessesByName("chrome");
if (proc.Length == 0) {
  // run whatever here if process is NOT open
}
else {
  // run whatever here if process is open
}
Posted by: Guest on November-01-2020

Code answers related to "check if process is open c#"

C# Answers by Framework

Browse Popular Code Answers by Language