Skip to content

Instantly share code, notes, and snippets.

@benhysell
Created September 7, 2016 13:36
Show Gist options
  • Select an option

  • Save benhysell/13e7dd614a83f7ee592967256a91caea to your computer and use it in GitHub Desktop.

Select an option

Save benhysell/13e7dd614a83f7ee592967256a91caea to your computer and use it in GitHub Desktop.
Compare .NET objects
#if DEBUG
var compareLogic = new CompareLogic(new ComparisonConfig() { MaxDifferences = 100 });
var result = compareLogic.Compare(workstation, workstationOld);
//if these are different, write out the differences
if (!result.AreEqual)
Console.WriteLine(result.DifferencesString);
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment