Dictionary values look ugly in CLR Debugger. Is there a way to make them appear in more friendly way? I want to see just keys and values instead of all these recursively nested properties.
UPD: The best trade-off found so far:
new ArrayList(myDictionary).ToArray()