AnyDiff
AnyDiff copied to clipboard
A CSharp (C#) diff library that allows you to diff two objects and get a list of the differences back.
Hello there, I'm comparing these two objects: ``` var obj1 = new Projection { Speakers = new [] { new Speaker { Id = 1, Name = "Fizz" } }...
Hi, let's say I have an object of type Person that is base object and has two child types: Employee and Candidate. Now when comparing Employee to Candidate type I...
Hi. Out of the blue, now I get exception: System.Reflection.TargetParameterCountException with message: Parameter count mismatch. The library was working fine for couple of months, but now these are thrown when...
1. I am getting an error that says two objects are not the same type - it would be useful when comparing deeply nested object graphs to know what types...
This example will course a endless loop on private properties of Type. Is this intended behavior? How do I fix this. ```cs class TypeReference { private Type _type; public string...
Firstly, thanks for the great library, I've just found it yesterday and have found it very useful and configurable so far! One use case I have that it doesn't seem...
`var diff = list1.Diff(list2, ComparisonOptions.All | ComparisonOptions.AllowCollectionsToBeOutOfOrder | ComparisonOptions.AllowEqualsOverride);` throws System.NotSupportedException pointing at IEnumerator.Reset() . I want to ignore ordering differences in lists. I tried igoring, but still getting it....
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 13.0.1 to 13.0.2. Release notes Sourced from Newtonsoft.Json's releases. 13.0.2 New feature - Add support for DateOnly and TimeOnly New feature - Add UnixDateTimeConverter.AllowPreEpoch property New feature...
I diff'ed two instance of `Order` where a new `OrderDetail` instance had been added to the array of one: `changedOrder`. If the `originalOrder` was on the left in the function...
Add test for excluding nested collection properties by name string. Related to #28