I was searching for a solution for the problem I'm having in my project. In the link below I found something usefull:
One Key to multiple values dictionary in C#?
However: isn't it better to use a Object in the dictionary instead of using a Tuple??
Object obj = new Object();
var dict = new Dictionary<KeyType, obj>();
foreach(KeyType kt in dict)
{
obj.X = value1;
obj.Y = value2;
}
Instead of:
var dict = new Dictionary<KeyType, Tuple<string, int, int, int>>()
I hope that there is someone who could help me. Thanks :)