Last active
September 10, 2019 21:38
-
-
Save ezirmusitua/0ca6763817cf97950056184c0b5d6299 to your computer and use it in GitHub Desktop.
[List Filter] List Filter In C# #C# #list
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 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