Created
December 21, 2017 01:31
-
-
Save carlosschults/d6ec153b7274ac699634d5dadb2e9644 to your computer and use it in GitHub Desktop.
c#8features-1
This file contains 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
public static class IntExtensions | |
{ | |
public static bool Even(this int value) | |
{ | |
return value % 2 == 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment