At the end of my current LINQ query, I have data which is in the form of an IEnumerable<IEnumerable<int>>
, with several duplicate combinations.
For example:
{
{5, 20}
{5, 20}
{10, 15}
}
What's the best way to filter these so that each set is only represented once? A LINQ answer would be ideal so I can chain it further.