Skip to content

Instantly share code, notes, and snippets.

@Aidurber
Created May 10, 2015 08:36
Show Gist options
  • Save Aidurber/4d5fbd325120a3af8d0e to your computer and use it in GitHub Desktop.
Save Aidurber/4d5fbd325120a3af8d0e to your computer and use it in GitHub Desktop.
High Performance String Searching C#
var matches = list.AsParallel().Where(s => s.Contains(searchTerm)).ToList();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment