Created
March 18, 2025 17:17
-
-
Save dontpaniclabsgists/ffe1a470d811b1cd92db69777e09cbd5 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 = 16, | |
Email = "[email protected]", | |
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