I have a Dictionary :
Dictionary<Project,List<User>> dictionary,
every Project has a group of Users.
I want to retrieve organize this data such that all the projects with similar users are arranged into this kind of data structure :
List<Tuple<List<Project>,List<User>>>
I don't even know where to start. I've been fighting with this for days.