Support named tuple elements
When calling Dump() on a typle with named elements, the output columns are "Item1", "Item2", etc. instead of the actual names.
Example:
var names = new List<(int Id, string First, string Last)>();
...
Actual output:
Item1 Item2 Item3
1 Alice Cooper
2 Bob Hope
Expected / desired output:
Id First Last
1 Alice Cooper
2 Bob Hope
33
votes

-
Ilia Tsvetkov commented
It's 2022, but still LinqPad doesn't support this.. Please add this nice feature
-
karel commented
I was surprised that this is not included yet.