Skip to content

Instantly share code, notes, and snippets.

@dkalamari
Created May 27, 2013 08:14
Show Gist options
  • Select an option

  • Save dkalamari/5655784 to your computer and use it in GitHub Desktop.

Select an option

Save dkalamari/5655784 to your computer and use it in GitHub Desktop.
Anonymous types
var actress = new { Name = "Rosario", Surname="Dawson", Age = 34 };
//OR
int Age= 34;
var actress = new { Name = "Rosario", Surname="Dawson", Age };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment