up vote 1 down vote favorite
2
share [g+] share [fb]

When developing a Visual Studio (2005) Debug Visualizer, you have to specify the target type you want to visualize (i.e. a DataSet Visualizer would specify its target at TypeOf(DataSet)). However, what if you want your Visualizer to be able to visualize any object type? Specifying the target to TypeOf(Object) doesn't seem to work.

Edit: this is for purely managed code.

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

You can't, which is a shame. The target type must be typeof(T) for some T other than "object".

link|improve this answer
feedback

You can't just visualize every object. There are certain requirements regarding serialization (for example). I never created a complex visualizer myself (just one for a custom mailobject), but that was the premise in all articles went to that direction.

Edit:

Mole 2010 is a great Visualizer that display generically many things.

link|improve this answer
feedback

Please see this article, in particular you want AutoExpand rules.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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