Dictionary dict = new Dictionary(); //where MyClass has an override for ToString()
Now how do I get a
Not tested/compiled, but something like that should work:
dict.Select(kvp => new KeyValuePair(kvp.Key, kvp.Value.ToString())).ToList()
if the syntax is not 100% spot on, I hope you got the idea.