Created
August 4, 2020 15:33
-
-
Save ayende/67649ce68ad38478ea46d9ffb8e9fec6 to your computer and use it in GitHub Desktop.
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
var user = new | |
{ | |
AcceptedEula = default(bool?), // set to null, mark the field as bool? | |
RegisteredAt = DateTime.Today, // set to today, the field is DateTime | |
Name = default(string), // set to null, mark the field as string | |
ActiveTasks = 0, // set to 0, the field is an int | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment