I am comparing Objects to see if they are equal, or have any differences.
If they are different, I want to store them together somehow, but I'm not sure how. There will be multiple Objects of the same type to be added.
Is something like:
List<T,T>
possible?
So if I compare Object A with Object B, and they are not the same, I could call:
List.Add(A,B).
So I would know that each object at each element were related?
Hope this makes sense!