ObjectDumper icon indicating copy to clipboard operation
ObjectDumper copied to clipboard

ObjectDumper is a utility which aims to serialize C# objects to string for debugging and logging purposes.

Results 19 ObjectDumper issues
Sort by recently updated
recently updated
newest added

eg: ```c# var persons = new List { new Person { Name = "John", Age = 20, }, new Person { Name = "Thomas", Age = 30, }, }; //...

Hey, thanks for writing and maintaining this project. I would like to use this for writing tests. I will be using it FOR my company, but it won't be included...

### Description I dump one of my object. I see this message: ``` Stack overflow. at System.RuntimeMethodHandle.GetStubIfNeeded(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType[]) at System.Reflection.RuntimeMethodInfo.MakeGenericMethod(System.Type[]) at ObjectDumping.Internal.TypeExtensions.GetDefault(System.Type) at ObjectDumping.Internal.TypeExtensions.TryGetDefault(System.Type) at ObjectDumping.Internal.PropertyAndValue..ctor(System.Object, System.Reflection.PropertyInfo) at ObjectDumping.Internal.ObjectDumperConsole+c__DisplayClass2_0.b__3(System.Reflection.PropertyInfo)...

bug

## Summary Currently the only way to exclude (readonly) properties is by using DumpOptions.ExcludeProperties. It excludes **all** properties matching the names in the to-dump-object(-tree). There might be use cases, where...

enhancement

## Summary Great library. I love it. Has helped me out with many of my projects. Kudos! So I am using the DumpOptions.ExcludeProperties to exclude those fields that are too...

enhancement

Generated C# calls the default constructor but it doesn't know what the constructor does. Is it feasible (!!) for Object Dumper to call the constructor to find out the initial...

enhancement

## Summary I sometimes use ObjectDumper to create unit test data for my software. In some cases I am dumping an object that has many children (with children) and I...

enhancement