Created
March 18, 2025 17:15
-
-
Save dontpaniclabsgists/f82d8e1a8844356870323d10108070bb to your computer and use it in GitHub Desktop.
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
Person person = new Person | |
{ | |
FirstName = "John", | |
LastName = "Doe", | |
Age = 30, | |
Email = null, | |
PhoneNumbers = new PhoneNumber[] | |
{ | |
new PhoneNumber { AreaCode = "123", Number = "456-7890" }, | |
new PhoneNumber { AreaCode = "098", Number = "765-4321" } | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment