Skip to content

Instantly share code, notes, and snippets.

@dontpaniclabsgists
Created March 18, 2025 17:13
Show Gist options
  • Save dontpaniclabsgists/76e2832f2e7a885cf031f7576fd0d10b to your computer and use it in GitHub Desktop.
Save dontpaniclabsgists/76e2832f2e7a885cf031f7576fd0d10b to your computer and use it in GitHub Desktop.
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