Compare-Net-Objects icon indicating copy to clipboard operation
Compare-Net-Objects copied to clipboard

What you have been waiting for :+1: Perform a deep compare of any two .NET objects using reflection. Shows the differences between the two objects.

Results 4 Compare-Net-Objects issues
Sort by recently updated
recently updated
newest added

Hello, I just noticed that the [EnumComparer](https://github.com/GregFinzer/Compare-Net-Objects/blob/master/Compare-NET-Objects/TypeComparers/EnumComparer.cs) is not added to the comparers by default. So when you have enums of different types, you get the error `Object must be...

Would be nice to have this built in to the library, currently using this custom converter: ``` using System; using KellermanSoftware.CompareNetObjects; using KellermanSoftware.CompareNetObjects.TypeComparers; namespace BestConnection.Application.Auditing { public class DateOnlyComparer :...

enhancement

I have given CompareReadonly = false in the config, it does not include the read-only variables in the differences which is the expected behaviour. But what my question is if...

bug

Comparing a Dictionary with Enum as key the PropertyPath will not result in something like [EnumName].Value.MyProperty instead it will result in Value.MyProperty because ShouldCompareByKeys will return false. Enum is not...