回答編集履歴
1
ジェネリック版追加
test
CHANGED
@@ -1,17 +1,17 @@
|
|
1
|
+
追記
|
2
|
+
|
3
|
+
.NET 9でジェネリック版が追加されました(今更何故?^^;
|
4
|
+
[What's new in .NET libraries for .NET 9 | Microsoft Learn](https://learn.microsoft.com/ja-jp/dotnet/core/whats-new/dotnet-9/libraries#ordereddictionarytkey-tvalue)
|
5
|
+
[OrderedDictionary<TKey,TValue> クラス (System.Collections.Generic) | Microsoft Learn](https://learn.microsoft.com/ja-jp/dotnet/api/system.collections.generic.ordereddictionary-2)
|
6
|
+
|
7
|
+
---
|
8
|
+
|
1
9
|
[OrderedDictionary クラス (System.Collections.Specialized) | Microsoft Docs](https://docs.microsoft.com/ja-jp/dotnet/api/system.collections.specialized.ordereddictionary)ってのがあるのですが、非ジェネリック版しかないんですよね。
|
2
|
-
|
3
|
-
|
4
10
|
|
5
11
|
それが気に食わない人は、自作しているんじゃないでしょうか。
|
6
12
|
|
7
|
-
|
8
|
-
|
9
13
|
[A Generic OrderedDictionary in C# - CodeProject](https://www.codeproject.com/Tips/5251695/A-Generic-OrderedDictionary-in-Csharp)
|
10
|
-
|
11
14
|
[NuGet Gallery | SoftCircuits.OrderedDictionary 1.0.2](https://www.nuget.org/packages/SoftCircuits.OrderedDictionary/)
|
12
|
-
|
13
15
|
[jehugaleahsa/truncon.collections.OrderedDictionary: A generic version of the .NET OrderedDictionary](https://github.com/jehugaleahsa/truncon.collections.OrderedDictionary)
|
14
16
|
|
15
|
-
|
16
|
-
|
17
17
|
雑に検索して見つけたものです(試したわけでも勧めるわけでもありません)
|