Can't get dump to work at all
Just testing LINQPAD in a Visual Studio 2017 C# program. This simple code:
String[] s = new String() { "aaaa", "bbbb", "cccc" };
s.Dump();
Only returns:
System.String[]
I have to be doing something wrong, but what?
String[] s = new String() { "aaaa", "bbbb", "cccc" };
s.Dump();
Only returns:
System.String[]
I have to be doing something wrong, but what?
Comments