replaysMike / AnyDiff

A CSharp (C#) diff library that allows you to diff two objects and get a list of the differences back.
Other
160 stars 17 forks source link

Bug where AnyDiff recurses properties of a collection #2

Closed replaysMike closed 4 years ago

replaysMike commented 5 years ago

It seems in some specific circumstance it's possible AnyDiff will recurse the properties of a collection, which shouldn't happen. It should only analyze the contents of a collection, it's possible that it needs to switch to using TypeSupport for some of that logic.

Will fix and cleanup.