A quite dumb question but i simply can't find the answer.
I have a self-written class that implements the IList<T>
interface. Now i like to see the containing elements within Debugging like i would with any .Net List<T>
.
To get this to work i think i have to provide the correct visualizer within the DebuggerVisualizerAttribute
. After a little searching all i could find is the folder for additional Visualizer. But there is just one for the DataSet.
But what are the types of all the Visualizer already available within Visual Studio (e.g. for string, List, etc.), so that i could provide the correct one for my implementation of something already available?
There is a nice article about how to make your own List debugger:
http://www.codeproject.com/KB/debug/DebugIList.aspx
You can add an attribute to you class
System.Diagnostics.DebuggerVisualizerAttribute
with the visualizer type in argumentThe debugger visualizers used by the .NET framework classes are internal. Which makes them a bit hard to use, you cannot use typeof(). There's a backdoor though, the [DebuggerTypeProxy] attribute also has a constructor that accepts a string. The one you want to use is named Mscorlib_CollectionDebugView, it is capable of visualing any class that implements ICollection<>. Here's an example of usage:
This works for .NET 4.0 as well, even though the version number is wrong. This otherwise has a risk of breaking with the next version of .NET if they decide to rename the internal class.
List<T>
uses theDebuggerTypeProxyAttribute
to define a proxy for the debugger. You can find all using the following expression:With the above expression, you can also test for
DebuggerVisualizerAttribute
, but this gave zero results (probably because the assemblies in the specific folder are not referenced). If you reference the assemblies in the folder, you can use the above expression to find the implementations there.