We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public class CBase<TKey> { public TKey Id { get; set; } } public class C3 : CBase<int> { public new int Id { get; set; } } public class C2 : CBase<int> { public C3 c3 { get; set; } = new(); } public class C1 : CBase<int> { public C2 c2 { get; set; } = new(); } public class CloneAndDiffTest : TestBase { [Fact] public void TestClone() { var org = Fixture.Create<C1>(); var c1 = FastDeepCloner.DeepCloner.Clone(org); var c2 = AnyClone.CloneExtensions.Clone(org);// pst.MapClone(); var diffs_0 = org.Diff(c1); var diffs_1 = org.Diff(c2); } }
The text was updated successfully, but these errors were encountered:
diffs_1 has not some different value
im using AnyDiff to get the different fields
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: