ObjectDumper
ObjectDumper copied to clipboard
ObjectDumper is a utility which aims to serialize C# objects to string for debugging and logging purposes.
## Summary Current program output IEnumerable is ... I would like to know what type and number of variables this variable is, not IEnumerable while visualStuido debugger, I can see...
Hi. On the nuget package page https://www.nuget.org/packages/ObjectDumper.NET/ the link for "License Info" takes you to : http://opensource.org/licenses/Apache-2.0 and links to that: _Can Open Source software be used for commercial purposes?...
When logging on a single line, the lineBreakChar can currently be set to ',' (for example) to comma separate the properties of the object. However, the final property will then...
With the new type `record` like this : `public record Sprint(int SprintId, DateTimeOffset StartDate, DateTimeOffset EndDate);` When using `DumpStyle.CSharp` , the generated code is incompatible : ``` new Sprint {...
I was using the nuget package currently out there and dumping some complex objects and where throwing an exception. I forked and coded out a SwallowException = true DumpOption, then...
Added ThrowException to the DumpOptions. Modified Console and CSharp dumper to pass the parameter Added throw bool to PropertyInfoExtensions Check options before either throwing or listing exception. Added tests to...
We often have the situation that dumped objects contain sensitive data such a personal information (name, address,...) or security relevant information (password hashes, authentication tokens). ObjectDumper of course cannot automatically...
It's unintuitive, although it's named properly. I had expected my ExcludeProperties list to remove any fields with the same name as well as properties with the name. I would suggest...
I have a lot of VB.NET code that could take advantage of this, so I added support for vb.net. I duplicated all of the unit tests and they all pass,...
I was looking at adding another dump format for html. Is that something you would be interested in bringing into ObjectDumper? I'm looking to create simple html output that would...