Created
March 18, 2025 17:13
-
-
Save dontpaniclabsgists/76e2832f2e7a885cf031f7576fd0d10b 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 = "[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