Skip to content

Instantly share code, notes, and snippets.

@ezirmusitua
Last active September 10, 2019 21:38
Show Gist options
  • Save ezirmusitua/0ca6763817cf97950056184c0b5d6299 to your computer and use it in GitHub Desktop.
Save ezirmusitua/0ca6763817cf97950056184c0b5d6299 to your computer and use it in GitHub Desktop.
[List Filter] List Filter In C# #C# #list
var list = new List<string> {"A", "B", "C"};
list.Where(x => x != "A")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment