My application requires I print N amount of times the Value X.
So, I can do this:
Dictionary<int, string> toPrint = new Dictionary<int, string>();
toPrint.Add(2, "Hello World");
...and later on I can use this information to print 2 pages, both with the text value "Hello World".
The issue I have, is the Dictionary really wants the first value to be the Key:
Dictionary<TKey, TValue>
Therefore, if I want to add 2 pages with the text value "Hello World" and then another 2 with "Goodbye World" I have an issue - both of them have a TKey value of 2 and this causes a runtime error ("An item with the same key has already been added").
The logic which will causes an error:
Dictionary<int, string> toPrint = new Dictionary<int, string>();
toPrint.Add(2, "Hello World");
toPrint.Add(2, "Goodbye World");
I still need this concept/logic to work, but I obviously can't use the Dictionary type due to the Key.
Does any one have any ideas of a work around?
