Skip to content

Instantly share code, notes, and snippets.

@InvaderZim85
Created March 6, 2019 21:23
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 InvaderZim85/8fdf668944df16e98ce18226588f0ba5 to your computer and use it in GitHub Desktop.
Save InvaderZim85/8fdf668944df16e98ce18226588f0ba5 to your computer and use it in GitHub Desktop.
String search
// Liste mit irgendwelchen Werten...
var myList = new List<string>();
// Suchen
var result = myList.Where(w => w.ToLower().Contains(searchString.ToLower()).ToList;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment