Possible Duplicate:
Is there an alternative to Dictionary/SortedList that allows duplicates?
I am looking for a Dictionary sort of class which can have duplicate Keys.
I search about it, and found LookUp class can use to store duplicate keys, but It has no default constructor, So we can't initialize it without any other object to LookUp.
But I have no any such object initially from which I can initialize a LookUp object.
So, My question is, Is there any class in .Net framework 3.5, which behave like Dictionary but allow me to have duplicate keys like LookUp?
Dictionary<K,List<V>>
instead ofDictinary<K,V>
, similar to Lookup? – CesarcesareDictionary<NetworkAction, Dictionary<NetworkContent, object>> _actionMapping
but I can have a single action multiple time. – Brionthis class stores multiple string values under a single key
– Soot