I would like to compare two lists of objects. The objects have four different properties. I need to compare only three of them as sequence (only three because one is always diff
You could use the SequenceEqual overload that allows you to pass in an IEqualityComparer implementation that only includes the properties that you wish to compare.