翻訳への提案を行います
 
他のユーザーによる提案:

progress indicator
他の提案はありません。
クリックして評価とフィードバックをお寄せください
MSDN
MSDN ライブラリ
.NET 開発
.NET Framework 4
System.Collections 名前空間
System.Collections.Generic
すべて縮小/すべて展開 すべて縮小
コンテンツの表示:   英語と日本語を並べて表示コンテンツの表示: 英語と日本語を並べて表示
.NET Framework Class Library
System.Collections.Generic Namespace

The System.Collections.Generic namespace contains interfaces and classes that define generic collections, which allow users to create strongly typed collections that provide better type safety and performance than non-generic strongly typed collections.

  ClassDescription
Public classComparer<(Of <(T>)>)Provides a base class for implementations of the IComparer<(Of <(T>)>) generic interface.
Public classDictionary<(Of <(TKey, TValue>)>)Represents a collection of keys and values.
Public classDictionary<(Of <(TKey, TValue>)>)..::.KeyCollectionRepresents the collection of keys in a Dictionary<(Of <(TKey, TValue>)>). This class cannot be inherited.
Public classDictionary<(Of <(TKey, TValue>)>)..::.ValueCollectionRepresents the collection of values in a Dictionary<(Of <(TKey, TValue>)>). This class cannot be inherited.
Public classEqualityComparer<(Of <(T>)>)Provides a base class for implementations of the IEqualityComparer<(Of <(T>)>) generic interface.
Public classHashSet<(Of <(T>)>)Represents a set of values.
Public classKeyedByTypeCollection<(Of <(TItem>)>)Provides a collection whose items are types that serve as keys.
Public classKeyNotFoundExceptionThe exception that is thrown when the key specified for accessing an element in a collection does not match any key in the collection.
Public classLinkedList<(Of <(T>)>)Represents a doubly linked list.
Public classLinkedListNode<(Of <(T>)>)Represents a node in a LinkedList<(Of <(T>)>). This class cannot be inherited.
Public classList<(Of <(T>)>)Represents a strongly typed list of objects that can be accessed by index. Provides methods to search, sort, and manipulate lists.
Public classQueue<(Of <(T>)>)Represents a first-in, first-out collection of objects.
Public classSortedDictionary<(Of <(TKey, TValue>)>)Represents a collection of key/value pairs that are sorted on the key.
Public classSortedDictionary<(Of <(TKey, TValue>)>)..::.KeyCollectionRepresents the collection of keys in a SortedDictionary<(Of <(TKey, TValue>)>). This class cannot be inherited.
Public classSortedDictionary<(Of <(TKey, TValue>)>)..::.ValueCollectionRepresents the collection of values in a SortedDictionary<(Of <(TKey, TValue>)>). This class cannot be inherited
Public classSortedList<(Of <(TKey, TValue>)>)Represents a collection of key/value pairs that are sorted by key based on the associated IComparer<(Of <(T>)>) implementation.
Public classSortedSet<(Of <(T>)>)Represents a collection of objects that is maintained in sorted order.
Public classStack<(Of <(T>)>)Represents a variable size last-in-first-out (LIFO) collection of instances of the same arbitrary type.
Public classSynchronizedCollection<(Of <(T>)>)Provides a thread-safe collection that contains objects of a type specified by the generic parameter as elements.
Public classSynchronizedKeyedCollection<(Of <(K, T>)>)Provides a thread-safe collection that contains objects of a type specified by a generic parameter and that are grouped by keys.
Public classSynchronizedReadOnlyCollection<(Of <(T>)>)Provides a thread-safe, read-only collection that contains objects of a type specified by the generic parameter as elements.
  InterfaceDescription
Public interfaceICollection<(Of <(T>)>)Defines methods to manipulate generic collections.
Public interfaceIComparer<(Of <(T>)>)Defines a method that a type implements to compare two objects.
Public interfaceIDictionary<(Of <(TKey, TValue>)>)Represents a generic collection of key/value pairs.
Public interfaceIEnumerable<(Of <(T>)>)Exposes the enumerator, which supports a simple iteration over a collection of a specified type.
Public interfaceIEnumerator<(Of <(T>)>)Supports a simple iteration over a generic collection.
Public interfaceIEqualityComparer<(Of <(T>)>)Defines methods to support the comparison of objects for equality.
Public interfaceIList<(Of <(T>)>)Represents a collection of objects that can be individually accessed by index.
Public interfaceISet<(Of <(T>)>)Provides the base interface for the abstraction of sets.
.NET Framework クラス ライブラリ
System.Collections.Generic 名前空間

System.Collections.Generic 名前空間には、ジェネリック コレクションを定義するインターフェイスとクラスが含まれています。このコレクションを使用することにより、ユーザーは、汎用的でない厳密に型指定されたコレクションに比べてタイプ セーフでパフォーマンスが高い、厳密に型指定されたコレクションを作成できるようになります。

  クラス説明
パブリック クラスComparer<(Of <(T>)>)IComparer<(Of <(T>)>) ジェネリック インターフェイスの実装のための基本クラスを提供します。
パブリック クラスDictionary<(Of <(TKey, TValue>)>)キーと値のコレクションを表します。
パブリック クラスDictionary<(Of <(TKey, TValue>)>)..::.KeyCollectionDictionary<(Of <(TKey, TValue>)>) 内のキーのコレクションを表します。 このクラスは継承できません。
パブリック クラスDictionary<(Of <(TKey, TValue>)>)..::.ValueCollectionDictionary<(Of <(TKey, TValue>)>) 内の値のコレクションを表します。 このクラスは継承できません。
パブリック クラスEqualityComparer<(Of <(T>)>)IEqualityComparer<(Of <(T>)>) ジェネリック インターフェイスの実装のための基本クラスを提供します。
パブリック クラスHashSet<(Of <(T>)>)値のセットを表します。
パブリック クラスKeyedByTypeCollection<(Of <(TItem>)>)キーとして機能する型が項目であるコレクションを提供します。
パブリック クラスKeyNotFoundExceptionコレクション内の要素にアクセスするために指定されたキーが、コレクションのいずれのキーとも一致しない場合にスローされる例外。
パブリック クラスLinkedList<(Of <(T>)>)ダブルリンク リストを表します。
パブリック クラスLinkedListNode<(Of <(T>)>)LinkedList<(Of <(T>)>) のノードを表します。 このクラスは継承できません。
パブリック クラスList<(Of <(T>)>)インデックスを使用してアクセスできる、厳密に型指定されたオブジェクトのリストを表します。 リストの検索、並べ替え、および操作のためのメソッドを提供します。
パブリック クラスQueue<(Of <(T>)>)オブジェクトの先入れ先出しコレクションを表します。
パブリック クラスSortedDictionary<(Of <(TKey, TValue>)>)キーに基づいて並べ替えられた、キーと値のペアのコレクションを表します。
パブリック クラスSortedDictionary<(Of <(TKey, TValue>)>)..::.KeyCollectionSortedDictionary<(Of <(TKey, TValue>)>) 内のキーのコレクションを表します。 このクラスは継承できません。
パブリック クラスSortedDictionary<(Of <(TKey, TValue>)>)..::.ValueCollectionSortedDictionary<(Of <(TKey, TValue>)>) 内の値のコレクションを表します。 このクラスは継承できません。
パブリック クラスSortedList<(Of <(TKey, TValue>)>)関連付けられた IComparer<(Of <(T>)>) 実装に基づいて、キーにより並べ替えられた、キーと値のペアのコレクションを表します。
パブリック クラスSortedSet<(Of <(T>)>)一定の並べ替え順序で管理されたオブジェクトのコレクションを表します。
パブリック クラスStack<(Of <(T>)>)任意の同じ型のインスタンスの、後入れ先出し (LIFO) の可変サイズのコレクションを表します。
パブリック クラスSynchronizedCollection<(Of <(T>)>)ジェネリック パラメーターで指定された型のオブジェクトを要素として格納するスレッド セーフのコレクションを提供します。
パブリック クラスSynchronizedKeyedCollection<(Of <(K, T>)>)ジェネリック パラメーターで指定した型のオブジェクトを格納し、キーによってグループ化される、スレッド セーフのコレクションを提供します。
パブリック クラスSynchronizedReadOnlyCollection<(Of <(T>)>)ジェネリック パラメーターで指定した型のオブジェクトを要素として格納する、スレッド セーフの読み取り専用コレクションを提供します。
  構造体説明
パブリック構造体Dictionary<(Of <(TKey, TValue>)>)..::.EnumeratorDictionary<(Of <(TKey, TValue>)>) の要素を列挙します。
パブリック構造体Dictionary<(Of <(TKey, TValue>)>)..::.KeyCollection..::.EnumeratorDictionary<(Of <(TKey, TValue>)>)..::.KeyCollection の要素を列挙します。
パブリック構造体Dictionary<(Of <(TKey, TValue>)>)..::.ValueCollection..::.EnumeratorDictionary<(Of <(TKey, TValue>)>)..::.ValueCollection の要素を列挙します。
パブリック構造体HashSet<(Of <(T>)>)..::.EnumeratorHashSet<(Of <(T>)>) オブジェクトの要素を列挙します。
パブリック構造体KeyValuePair<(Of <(TKey, TValue>)>)設定または取得できる、キー/値ペアを定義します。
パブリック構造体LinkedList<(Of <(T>)>)..::.EnumeratorLinkedList<(Of <(T>)>) の要素を列挙します。
パブリック構造体List<(Of <(T>)>)..::.EnumeratorList<(Of <(T>)>) の要素を列挙します。
パブリック構造体Queue<(Of <(T>)>)..::.EnumeratorQueue<(Of <(T>)>) の要素を列挙します。
パブリック構造体SortedDictionary<(Of <(TKey, TValue>)>)..::.EnumeratorSortedDictionary<(Of <(TKey, TValue>)>) の要素を列挙します。
パブリック構造体SortedDictionary<(Of <(TKey, TValue>)>)..::.KeyCollection..::.EnumeratorSortedDictionary<(Of <(TKey, TValue>)>)..::.KeyCollection の要素を列挙します。
パブリック構造体SortedDictionary<(Of <(TKey, TValue>)>)..::.ValueCollection..::.EnumeratorSortedDictionary<(Of <(TKey, TValue>)>)..::.ValueCollection の要素を列挙します。
パブリック構造体SortedSet<(Of <(T>)>)..::.EnumeratorSortedSet<(Of <(T>)>) オブジェクトの要素を列挙します。
パブリック構造体Stack<(Of <(T>)>)..::.EnumeratorStack<(Of <(T>)>) の要素を列挙します。
  インターフェイス説明
パブリック インターフェイスICollection<(Of <(T>)>)ジェネリック コレクションを操作するメソッドを定義します。
パブリック インターフェイスIComparer<(Of <(T>)>)2 つのオブジェクトを比較するために型が実装するメソッドを定義します。
パブリック インターフェイスIDictionary<(Of <(TKey, TValue>)>)キーと値のペアのジェネリック コレクションを表します。
パブリック インターフェイスIEnumerable<(Of <(T>)>)指定した型のコレクションに対する単純な反復処理をサポートする列挙子を公開します。
パブリック インターフェイスIEnumerator<(Of <(T>)>)ジェネリック コレクションに対する単純な反復処理をサポートします。
パブリック インターフェイスIEqualityComparer<(Of <(T>)>)オブジェクトが等しいかどうかの比較をサポートするメソッドを定義します。
パブリック インターフェイスIList<(Of <(T>)>)インデックスによって個別にアクセスできるオブジェクトのコレクションを表します。
パブリック インターフェイスISet<(Of <(T>)>)セットの抽象化のための基本インターフェイスを提供します。
コミュニティ コンテンツ   コミュニティ コンテンツとは
新しいコンテンツの追加 RSS  注釈
Processing
© 2012 Microsoft. All rights reserved. 使用条件 | 商標 | プライバシー
Page view tracker