I want to use a generic collection like Dictionary
, but Dictionary
requires that every key be unique. I have multiple values for the same "key", so I need a generic collection that will allow for that.
I realize that this makes the key no longer really a key, but I don't know what else to call it.