I have a list of objects that are disabled or uniquely identified by one of their properties: "ID". I need to group all objects with different identifiers that will have the rest of the properties.
Example: Obj has the properties "ID", "E1", "E2", "E3". Please note that these are all properties of Obj.
I know that the identifiers are different for all List of Obj, but would like to group if E1, E2 and E3 are the same for different Obj. So I would have an Obj array with the same E1, E2, E3, but with different identifiers.
What is the easiest way to handle this in C #, any ideas?
source
share