Created
February 28, 2018 11:31
-
-
Save Niksko/b9ff917f468c748a544c79a4a50f1187 to your computer and use it in GitHub Desktop.
Phoenix talk gists
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 numberList = new List<int> { | |
| 10, | |
| 11, | |
| 20, | |
| 21, | |
| 22, | |
| 23 | |
| }; | |
| var numbersFromListGreaterThan21 = numberList.Count(x => x >= 21); |
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
| test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment