Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have to convert System.Collections.Generic.IDictionary<string, decimal> to System.Collections.Generic.Dictionary<string, decimal>, and i can't. I tried the ToDictionary method and can't specify right arguments.

I've tried the following:

// my dictionary is PlannedSurfaces (of type IDictionary<string, decimal>)
blabla.ToDictionary<string, decimal>(localConstruction.PlannedSurfaces) 
share|improve this question
post your code, and any errors... – Mitch Wheat Jun 21 '11 at 7:58
2  
Can you show what you tried? – Stecya Jun 21 '11 at 7:58
blabla.ToDictionary<string, decimal>(localConstruction.PlannedSurfaces) IDictionary<string, decimal> PlannedSurfaces, this is my dictionary. – croisharp Jun 21 '11 at 8:01

2 Answers

up vote 12 down vote accepted

var newDict = new Dictionary<string, decimal>(oldDictionary)

share|improve this answer
Thx, that worked. – croisharp Jun 21 '11 at 8:03

or in linq

var castedDico = dictionary.ToDictionary(kvp => kvp.Key, kvp => kvp.Value);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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