← Customer Feedback for LINQPad Settings and activity 2 results found Allow enumerating or traversing the differences returned by the Util.Dif 3 votes Vote Vote Vote Vote We're glad you're herePlease sign in to leave feedback Signed in as (Sign out) Close Close 1 vote 2 votes 3 votes Remove votes You have left! (?) (thinking…) 0 comments · LINQPad Feature Suggestions · Edit… · Delete… · Admin → How important is this to you? Not at all You must login first! Important You must login first! Critical You must login first! We're glad you're herePlease sign in to leave feedback Signed in as (Sign out) Close Close Oldřich Dlouhý shared this idea · Nov 12, 2024 Util.Dif Should have an indication of similar or different. 3 votes Vote Vote Vote Vote We're glad you're herePlease sign in to leave feedback Signed in as (Sign out) Close Close 1 vote 2 votes 3 votes Remove votes You have left! (?) (thinking…) 1 comment · LINQPad Feature Suggestions · Delete… · Admin → How important is this to you? Not at all You must login first! Important You must login first! Critical You must login first! We're glad you're herePlease sign in to leave feedback Signed in as (Sign out) Close Close An error occurred while saving the comment Oldřich Dlouhý commented · Nov 12, 2024 · Edit… · Delete… There is property `IsSame`, so you can do ``` var dif = Util.Dif(o1, o2); if (!dif.IsSame) { dif.Dump(); } ``` Save Submitting...
There is property `IsSame`, so you can do
```
var dif = Util.Dif(o1, o2);
if (!dif.IsSame) {
dif.Dump();
}
```