ObjectDumper
ObjectDumper copied to clipboard
feat: Allowed write dump on generic TextWriter
eg:
var persons = new List<Person>
{
new Person { Name = "John", Age = 20, },
new Person { Name = "Thomas", Age = 30, },
};
// Dump persons object directly into console output without going through a StringBuilder
persons.Dump(Console.Out);
@workgroupengineering thanks for your contributions. I gonna look into the changes one-by-one and comment/adjust if necessary. Have a good weekend!
Azure Pipelines successfully started running 1 pipeline(s).
/azp run
Azure Pipelines successfully started running 1 pipeline(s).