One of the biggest questions with Anonymous Types is “can I pass them around?” If not, why not? Can you do something like this, for example:
var GetAnonymousValue() { return new { Name = “Richard Bushnell” };
} void Main() { var value = GetAnonymousValue(); var name = value.Name;...