Skip to content

Instantly share code, notes, and snippets.

@osnipezzini
Created May 26, 2021 11:41
Show Gist options
  • Save osnipezzini/75c0d18f98cc5db90e56efdac60dc9c8 to your computer and use it in GitHub Desktop.
Save osnipezzini/75c0d18f98cc5db90e56efdac60dc9c8 to your computer and use it in GitHub Desktop.
// Versão compacta
if (pids.Count > 0)
pids.ForEach(async pid => await service.KillProcAsync(pid));
#Versao simples
if (pids.Count > 0)
{
foreach (int pid in pids)
{
await service.KillProcAsync(pid);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment