I have a collection of user objects, but need to return a list of distinct users based on User ID.
So I'm wondering is it possible to select only distinct values based on a given property of the user object?
Collection<User> users = serializer.Deserialize<Collection<User>>(userCollection);
User Object:
UserID
UserName
Thanks