There's a question here regarding the overriding of ToString() in KeyValuePair(TKey, TValue), which it's not possible.
I saw there are some attribute types like DebuggerDisplayAttribute, DebuggerTypeProxyAttribute which can control the way a type is displayed in the debugger. I only used debugger visualizers.
Logically, these attributes can only be applied to user-defined classes (except for partial classes I think).
So is there any way to control the debugging result of a built-in (BCL) .NET type in Visual Studio?
EDIT: To make it a little bit clearer, I'm mainly interested in the string representation of the type. It's sort of 'overriding' ToString() just for debugging.