ConsoleDump
ConsoleDump copied to clipboard
Pretty print objects to the console. Similar to LINQPad's Dump() extension method.
Currently when I use `Dump` extension method on a DataReader instance, this is what I get: ``` System.Data.SqlClient.SqlDataReader Depth 0 FieldCount 14 HasRows True IsClosed False RecordsAffected -1 VisibleFieldCount 14...
Can I config default behavior or overload Dump method if I need 1) value.Dump(nameof(value)) 2) see full collection, not only first 24 items
I often find myself wanting to Dump several 100 items, when writing scripts that will output CSV files and stuff. This PR will enable having more than ushort items, and...
Would be great to be able to print `IEnumerable`. Getting properties from the first non-null object is fair game IMO.
Any chance to change this: ``` ConsoleDump.Extensions.Dump(new { Array = new[] { "foo", "bar" } }); ``` From: ``` ø { Array = System.String[] } Array System.String[] ``` To a...