Is there a way to generate a dictionary initializer using the C# CodeDom? Are those supported at all?

I would like to have:

private IDictionary<string, string> map = new Dictionary<string, string>
{
    { "Name", "Value" },
    ...
};
link|improve this question

65% accept rate
feedback

1 Answer

up vote 4 down vote accepted

This is not possible using the CodeDom constructs. They were not updated for collection initializers.

LukeH has an excellent blog post on the subject of 3.5 features and the CodeDom

link|improve this answer
Was afraid that's the case... Thanks anyway! – hmemcpy Jun 15 '10 at 20:18
feedback

Your Answer

 
or
required, but never shown

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