Skip to content

Instantly share code, notes, and snippets.

@cihatsolak
Created July 9, 2022 10:37
Show Gist options
  • Save cihatsolak/a908d90995d64d0920f2949e8e86f334 to your computer and use it in GitHub Desktop.
Save cihatsolak/a908d90995d64d0920f2949e8e86f334 to your computer and use it in GitHub Desktop.
AsParallel.cs
//LINQ
vehicles.Where(vehicle => vehicle.Name.Contains("Taycan"));
//PLINQ
vehicles.AsParallel().Where(vehicle => vehicle.Name.Contains("Taycan"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment