Skip to content

Instantly share code, notes, and snippets.

@dschenkelman
Created April 6, 2015 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dschenkelman/195bcb99473c3f2b9db9 to your computer and use it in GitHub Desktop.
Save dschenkelman/195bcb99473c3f2b9db9 to your computer and use it in GitHub Desktop.
C# foreach tasks
async Task FetchUrls(IEnumerable<string> urls)
foreach (var url in urls){
await fetch(url);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment