using KellermanSoftware.CompareNetObjects;
using System.Collections.Generic;
public static void Main()
CompareLogic compareLogic = new CompareLogic();
compareLogic.Config.MaxDifferences = 100;
compareLogic.Config.IgnoreCollectionOrder = true;
DateTime d = DateTime.Now;
var person1 = new Wrapper
Person = new BaseNaturalPerson
BirthNumber = "aaaa", DateOfBirth = d, CitizenshipCountriesId = new List<int> { 1 }, Gender = Genders.M, LegalCapacity = new() { RestrictionTypeId = 1, RestrictionUntil = DateTime.Now }
var person2 = new Wrapper
Person = new BaseNaturalPerson
BirthNumber = "aaaa", DateOfBirth = d, CitizenshipCountriesId = new List<int> { 2, 1 }, Gender = Genders.F, LegalCapacity = new() { RestrictionTypeId = 2, RestrictionUntil = DateTime.Now }
ComparisonResult result = compareLogic.Compare(person1, person2);
result.Differences.ForEach(t => {
Console.WriteLine(t.PropertyName);
Console.WriteLine(t.MessagePrefix);
Console.WriteLine(result.DifferencesString);
public BaseNaturalPerson Person {get;set;}
public class BaseNaturalPerson
public string BirthNumber { get; set; }
public DateTime? DateOfBirth { get; set; }
public int? MaritalStatusId { get; set; }
public List<int> CitizenshipCountriesId { get; set; }
public LegalCapacityItem LegalCapacity { get; set; }
public Genders Gender {get;set;}
public class LegalCapacityItem
public int? RestrictionTypeId { get; set; }
public DateTime? RestrictionUntil { get; set; }