I’ve got an object like this:
Tuple<Question, Levels[]>
// question, { easy, medium, hard }
Levels is an enum with four options: Easy, Medium, Hard and Expert.
And I want that for each enum which contains the tuple, LINQ function deliver a Dictionary<Question, Levels>. For example
If my tuple has three levels, the dictionary should have three values,
// question, Easy
// question, Medium
// question, Hard
As others have noted the question isn’t very clear. I’ve made an attempt to show you various things that you might be wanting to do: