Dump() method. Show type of empty arrays.
Normally Dump() will show the type and length of an array, as well as it's contents. However, empty arrays are shown as "(0 items)", it would be good too see that the object is indeed an array of a specific type.
So e.g. if I do:
====
var fields = "".Split(',')
fields.Dump();
We see:
String[] (0 items)
1
vote
Colin Green
shared this idea