using KellermanSoftware.CompareNetObjects;
public static void Main()
var fields = typeof(A).GetFields().Where(f => !Attribute.IsDefined(f, typeof(CustomAttribute))).Select(p => p.Name).ToList();
var bfields = typeof(B).GetFields().Where(f => !Attribute.IsDefined(f, typeof(CustomAttribute))).Select(p => $"B.{p.Name}");
fields.AddRange(bfields);
Console.WriteLine(string.Join(", ", fields));
CompareLogic compareLogic = new();
compareLogic.Config.MembersToIgnore = new (fields);
compareLogic.Config.MaxDifferences = 50;
var a = new A{X=1,Y=2,Z=3,E=4,C=5, B = new(){F=6, G=7, H=8, L=9, M=10}};
var b = new A{X=10,Y=20,Z=30,E=40,C=50, B = new(){F=60, G=70, H=80, L=90, M=100}};
Console.WriteLine(compareLogic.Compare(a,b).DifferencesString);
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public class CustomAttribute: Attribute{
public bool CompareInner;
public CustomAttribute(bool compareInner = false): base(){CompareInner = compareInner;}