Created
May 10, 2015 08:36
-
-
Save Aidurber/4d5fbd325120a3af8d0e to your computer and use it in GitHub Desktop.
High Performance String Searching C#
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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