Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は行を使用しているリンクリストコードを持っています
GenericList<int> gll = new GenericList<int>();
しかし、名前空間が欠落していることを示していますsystem.collection。system.collection.generic
system.collection
system.collection.generic
Googleで検索しましたが、これを解決できません。
前もって感謝します。
私の知る限りGenericList<T>、.NET Framework には型がありません。 代わりに、を使用してList<int>ください。
GenericList<T>
List<int>
これは質問に対する答えではありませんが、独自のカスタム XxxxxList<> スタイル コレクションの作成に関する興味深い情報です。
List<T> からの継承
C#: List<T> の継承の問題
(あなたの GenericList クラスは同僚によって作成されたと思います。おそらく、彼/彼女は正しい方法で作成したか、間違った方法で作成したのでしょう。)