Anonymous types:
*
Implicitly typed arrays
Arrays of anonymous types may be created with implicit typing.
var arr = new[] {
new { Id = 0 },
new { Id = 1 }
};