vote up 3 vote down star
1

Is it possible in C# 3.net to create a System.Collections.Generic.Dictionary<TKey, TValue> where TKey is unconditioned class and TValue - an anonymous class with a number of properties, for example - database column name and it's localized name.

Something like this:

new { ID = 1, Name = new { Column = "Dollar", Localized = "Доллар" } }
flag

76% accept rate

2 Answers

vote up 6 vote down check

You can't declare such a dictionary type directly (there are kludges but these are for entertainment and novelty purposes only), but if your data is coming from an IEnumerable or IQueryable source, you can get one using the LINQ ToDictionary operator and projecting out the required key and (anonymously typed) value from the sequence elements:

var intToAnon = sourceSequence.ToDictionary(
    e => e.Id,
    e => new { e.Column, e.Localized });
link|flag
thanks! I will use your code. Before it I do next: var q = from row in table.AsEnumerable() select .. – abatishchev Oct 25 at 0:33
vote up 3 vote down

As itowlson said, you can't declare such a beast, but you can indeed create one:

	static IDictionary<TKey, TValue> NewDictionary<TKey, TValue>(TKey key, TValue value)
	{
		return new Dictionary<TKey, TValue>();
	}

	static void Main(string[] args)
	{
		var dict = NewDictionary(new {ID = 1}, new { Column = "Dollar", Localized = "Доллар" });
	}

It's not clear why you'd actually want to use code like this.

link|flag
3  
Why? I can think of a number of reasons. Here's one. Consider for example a dictionary used to memoize an n-ary function, say a function of four int arguments. In the next version of the CLR of course you'd just use a 4-tuple, but in C# 3, you could create a dictionary of anonymous type {int, int, int, int}, done, no need to define your own tuple type. – Eric Lippert Oct 25 at 0:50
I now have another entry for the "brushes with fame" section of my personal homepage! :-) – Dan Oct 25 at 0:57

Your Answer

Get an OpenID
or

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