Created
July 14, 2012 12:59
-
-
Save vasily-kirichenko/3111157 to your computer and use it in GitHub Desktop.
Not null in Nemerle
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
class Person | |
{ | |
public Name: string; | |
public this([NotNull] name: string) | |
{ | |
Name = name; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment