In this question I saw an anonymous type expression with an unfamiliar syntax:
new { MyObjectID = g.Key, totalSum }
At first I thought it (, totalSum }) was a syntax error as no key is specified, but it compiles and works in C#3.0. I have verified this syntax in LINQPad (2.x -> C#3):
var y = ":-)";
var q = new { Y = y, y, y.Length, };
q.Dump();
Result:
(anon type) {
Y = ":-)",
y = ":-)",
Length = 3
}
Where in the specification is this syntax defined? (Answers should include an applicable reference and appropriate excerpt.)
And, more subjective (feel free not to answer), is it a good syntax/short-cut to omit the keys? I have not used it so far as I have not known about it, and I am not very enamored with that syntactical sugar.