vote up 4 vote down star
3

I've been trying to get up to speed on some of the newer features in C# and one of them that I haven't had occasion to use is anonymous types.

I understand the usage as it pertains to LINQ queries and I looked at this SO post which asked a similar question. Most of the examples I've seen on the net are related to LINQ queries, which is cool. I saw some somewhat contrived examples too but not really anything where I saw a lot of value.

Do you have a novel use for anonymous types where you think it really provides you some utility?

flag

7 Answers

vote up 5 vote down check

With a bit of reflection, you can turn an anonymous type into a Dictionary<string, object>; Roy Osherove blogs his technique for this here: http://weblogs.asp.net/rosherove/archive/2008/03/11/turn-anonymous-types-into-idictionary-of-values.aspx

Jacob Carpenter uses anonymous types as a way to initialize immutable objects with syntax similar to object initialization: http://jacobcarpenter.wordpress.com/2007/11/19/named-parameters-part-2/

Anonymous types can be used as a way to give easier-to-read aliases to the properties of objects in a collection being iterated over with a foreach statement. (Though, to be honest, this is really nothing more than the standard use of anonymous types with LINQ to Objects.) For example:

Dictionary<int, string> employees = new Dictionary<int, string>
{
    { 1, "Bob" },
    { 2, "Alice" },
    { 3, "Fred" },
};

// standard iteration
foreach (var pair in employees)
    Console.WriteLine("ID: {0}, Name: {1}", pair.Key, pair.Value);

// alias Key/Value as ID/Name
foreach (var emp in employees.Select(p => new { ID = p.Key, Name = p.Value }))
    Console.WriteLine("ID: {0}, Name: {1}", emp.ID, emp.Name);

While there's not much improvement in this short sample, if the foreach loop were longer, referring to ID and Name might improve readability.

link|flag
vote up 1 vote down

I've used them for doing templated emails as they are great if you're using reflection and generics.

Some info can be found here: http://www.aaron-powell.com/blog.aspx?id=1247

link|flag
Thanks for your input - I'll take a look. – itsmatt Oct 5 '08 at 22:53
vote up 3 vote down

To add to what Justice said, ASP.Net MVC is the first place I've seen these used in interesting and useful ways. Here's one example:


Html.ActionLink("A Link", "Resolve", new { onclick = "someJavascriptFn();" })

ASP.Net MVC uses anonymous types like this to add arbitrary attributes to HTML elements. I suppose there's a number of different ways you could accomplish the same thing, but I like the terse style of anonymous types, it gives things more of a dynamic language feel.

link|flag
Thanks for your input! – itsmatt Oct 5 '08 at 22:52
vote up 1 vote down

Occasionally I suspect it may be useful to perform something which is like a LINQ query, but doesn't happen to use LINQ - but you still want a projection of some kind. I don't think I'd use anonymous types in their current form for anything radically different to LINQ projections.

One thing I would like to see is the ability to create "named" types with simple declarations, which would generate the properties and constructor in the same way as for anonymous types, as well as overriding Equals/GetHashCode/ToString in the same (useful) way. Those types could then be converted into "normal" types when the need to add more behaviour arose.

Again, I don't think I'd use it terribly often - but every so often the ability would be handy, particularly within a few methods of a class. This could perhaps be part of a larger effort to give more support to immutable types in C# 5.

link|flag
vote up 4 vote down

ASP.NET MVC routing uses these objects all over the place.

link|flag
vote up 1 vote down

This struck me as pretty cool and interesting. Generic Factory over Object Initializers

link|flag
I guess someone disagreed! – Robert S. Oct 3 '08 at 18:19
I actually thought that's a pretty cool little class there, but the code really didn't need the var there. It wasn't an anonymous type, it could have just as easily been TType item = new TType(); (btw, I didn't downvote you) – BFree Oct 3 '08 at 18:31
That is interesting. Thanks for the link! – itsmatt Oct 3 '08 at 18:58
vote up 2 vote down

The biggest use for anonymous types is LINQ, in fact that's why it was created.

I guess one reason for an anonymous type outside of linq is to create a temporary struct-like object, e.g.:

var x = new { a = 1, b = 2 };

That may make your life a little easier in some situations.

link|flag
Thanks for the response. I guess I'm looking for one of those situations where I'd want to do that. – itsmatt Oct 3 '08 at 18:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.