vote up 2 vote down star

Is there a quick way to convert a Generic Dictionary from one type to another

I have this

IDictionary<string, string> _commands;

and need to pass it to a function that takes a slightly different typed Dictionary

public void Handle(IDictionary<string, Object> _commands);
flag

62% accept rate

2 Answers

vote up 5 vote down check

I suppose I would write

Handle(_commands.ToDictionary(p => p.Key, p => (object)p.Value));

Not the most efficient thing in the world to do, but until covariance is in, that's the breaks.

link|flag
vote up 0 vote down

maybe this function can be useful for you

IEnumerable<KeyValuePair<string, object>> Convert(IDictionary<string, string> dic) {
    foreach(var item in dic) {
    	yield return new KeyValuePair<string, object>(item.Key, item.Value);
    }
}

And you will call it like so:

Handle(Convert(_commands));
link|flag

Your Answer

Get an OpenID
or

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