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?
How I would like to see the above "Results View" is
I can understand it can be challenging if object/collection is too big but atleast this helps in majority of cases.
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)