0

Is it feasible to display the object values or collection of object values in tabular format similar to DataTable in visual studio debug visualizer? By writing a custom visualizer? I feel this will give a quick glance of all values at once instead of expanding each item to see its values.

Is this technically achievable or are there any constraints that stops objects to be displayed in tabular view?

enter image description here

How I would like to see the above "Results View" is

enter image description here

I can understand it can be challenging if object/collection is too big but atleast this helps in majority of cases.

san
  • 304
  • 4
  • 20

2 Answers2

0

I found something that does this kind of job

https://www.codeproject.com/Articles/1181451/Visual-Studio-Collection-Visualizers?msg=5383746

http://rapiddevbookcode.codeplex.com/wikipage?title=EnumerableDebugVisualizer (Looks good but buggy with other tabbed features)

san
  • 304
  • 4
  • 20
  • Since it was resolved, you could mark it as the answer, so it could help other community members. Thanks for your sharing:) – Jack Zhai Jul 31 '17 at 05:21
0

This feature is built into OzCode, a commercial extension to Visual Studio I co-created.

Video

Here is the basic premise

And here is an instructional video

Omer Raviv
  • 11,409
  • 5
  • 43
  • 82