Created
December 10, 2010 22:02
-
-
Save escoz/736895 to your computer and use it in GitHub Desktop.
teste
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
// stupid unless keyword for C# | |
// lets say I want to print items if they're are not editable: | |
// you can do: | |
foreach (var i in items) { | |
if (!i.editable) print(i); | |
} | |
// or | |
foreach (var i in items) { | |
unless (i.editable) print(i); | |
} | |
// edit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment