Posted on: 5/25/2011 1:19:40 PM | Views : 843

Hi!
I have googled around the web but just cant figure this one out..
I have two Lists..each uses the same "Class" to define its pattern(List<YouTubeEntity>)
But the thing is that one of the list contains objects of the class YouTubeEntity but some of its properties aint set, while the other lists objects has more properties set to them..
For instance the other lists objects has a property called "Votes" which has a value, but the other lists objects also has the property "Votes" but there is no value for this.
Both of them have a property called "VideoId"..and all the objects in each list has a value for this property..
Okey..so later on in my code i merge the lists by adding them to a third list by using the "AddRange" method.
So now I have one list..with all the YouTubeEntities objects within it.. the things is that I now want to remove all the duplicate objects within this new list that has the same VideoId..
...

Go to the complete details ...