Util.Dif Should have an indication of similar or different.
Util.Dif is awesome :)
It would be nice to do something like
var dif = Util.Dif(o1, o2);
if (dif.IsDifferent)
{
dif.Result.Dump();
}
3
votes
Anonymous
shared this idea
-
Oldřich Dlouhý commented
There is property `IsSame`, so you can do
```
var dif = Util.Dif(o1, o2);
if (!dif.IsSame) {
dif.Dump();
}
```