Ordered List of Keyvaluepairs?

Posted by boris callens on Stack Overflow See other posts from Stack Overflow or by boris callens
Published on 2010-06-18T14:52:05Z Indexed on 2010/06/18 14:53 UTC
Read the original article Hit count: 268

Filed under:
|
|
|

Is there an collection in .net that allows the storing KeyValuePair<string, string> that keeps the order of inserting?
OrderedDictionary looked promising, but seems to be rather lacking.
Now I'm looking into IOrderedEnumerable>, but I can't seem to find any implementation except for ISortedDictionary, but that's not what I want. No sorting needs to be done, just the order of inserting is important.

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET