Skip to content

Instantly share code, notes, and snippets.

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