Generic Key/Value pair collection in that preserves insertion order?

前端 未结 9 1243
刺人心
刺人心 2020-12-09 01:40

I\'m looking for something like a Dictionary however with a guarantee that it preserves insertion order. Since Dictionary is a hashtable, I do not think it does.<

9条回答
  •  旧巷少年郎
    2020-12-09 02:08

    There is a generic implementation on code project which comes with a reasonable amount of test cases.

    The author chose a rather funny name (KeyedList) which makes it pretty hard to find.

提交回复
热议问题