I have a collection of objects which are: someDate someString
I need to select objects that are different by this two fields. And I can not select it as objects in collections - I need to create new ones.
Say:
01/01/2011 "One"
01/01/2011 "One"
01/01/2011 "One"
01/01/2011 "Two"
(I need to note - this four are different to each other)
And I need to get:
01/01/2011 "One"
01/01/2011 "Two"
How can I achieve it?
Thanks.