anybody knows how to transform the FormCollection into a IDictionary or how to get a IDictionary in the post action ?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

This is just an equivalent of Omnu's code, but it seems more elegant to me:

Dictionary<string, string> form = formCollection.AllKeys.ToDictionary(k => k, v => formCollection[v]);
link|improve this answer
I think it's a matter of style, i personally think Omu's code is a little more verbose, but it's easier to see what happens. – Michel May 4 '10 at 12:48
feedback

I did it like this:

            var form = new Dictionary<string, string>();
            foreach (var key in formCollection.AllKeys)
            {
                var value = formCollection[key];
                form.Add(key, value);
            }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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