Formatting IEnumerable<T> as table #3081
-
In the initial versions of this the default formatter for an It seems this is no longer the default. Is there any way to do this in newer versions? It's pretty useful to be able to look at a collection that way. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
We're talking about bringing this back as a configurable behavior. The nested tables were very hard to use when the objects in the list were of different types, so we aligned it more to the watch-style UI in Visual Studio. |
Beta Was this translation helpful? Give feedback.
-
The |
Beta Was this translation helpful? Give feedback.
One thing you can do is convert the objects to a
TabularDataResource
and then display that. Here's an example with the new formatter and then theTabularDataResource
approach: