CodeNamespaceCollection クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
CodeNamespace オブジェクトのコレクションを表します。
public ref class CodeNamespaceCollection : System::Collections::CollectionBase
public class CodeNamespaceCollection : System.Collections.CollectionBase
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CodeNamespaceCollection : System.Collections.CollectionBase
type CodeNamespaceCollection = class
inherit CollectionBase
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CodeNamespaceCollection = class
inherit CollectionBase
Public Class CodeNamespaceCollection
Inherits CollectionBase
- 継承
- 属性
例
CodeNamespaceCollection クラスを使用する方法を次の例に示します。 この例では、 クラスの新しいインスタンスを作成し、複数のメソッドを使用してステートメントをコレクションに追加し、そのインデックスを返し、特定のインデックス ポイントで属性を追加または削除します。
// Creates an empty CodeNamespaceCollection.
CodeNamespaceCollection^ collection = gcnew CodeNamespaceCollection;
// Adds a CodeNamespace to the collection.
collection->Add( gcnew CodeNamespace( "TestNamespace" ) );
// Adds an array of CodeNamespace objects to the collection.
array<CodeNamespace^>^namespaces = {gcnew CodeNamespace( "TestNamespace1" ),gcnew CodeNamespace( "TestNamespace2" )};
collection->AddRange( namespaces );
// Adds a collection of CodeNamespace objects to the collection.
CodeNamespaceCollection^ namespacesCollection = gcnew CodeNamespaceCollection;
namespacesCollection->Add( gcnew CodeNamespace( "TestNamespace1" ) );
namespacesCollection->Add( gcnew CodeNamespace( "TestNamespace2" ) );
collection->AddRange( namespacesCollection );
// Tests for the presence of a CodeNamespace in the collection,
// and retrieves its index if it is found.
CodeNamespace^ testNamespace = gcnew CodeNamespace( "TestNamespace" );
int itemIndex = -1;
if ( collection->Contains( testNamespace ) )
itemIndex = collection->IndexOf( testNamespace );
// Copies the contents of the collection beginning at index 0,
// to the specified CodeNamespace array.
// 'namespaces' is a CodeNamespace array.
collection->CopyTo( namespaces, 0 );
// Retrieves the count of the items in the collection.
int collectionCount = collection->Count;
// Inserts a CodeNamespace at index 0 of the collection.
collection->Insert( 0, gcnew CodeNamespace( "TestNamespace" ) );
// Removes the specified CodeNamespace from the collection.
CodeNamespace^ namespace_ = gcnew CodeNamespace( "TestNamespace" );
collection->Remove( namespace_ );
// Removes the CodeNamespace at index 0.
collection->RemoveAt( 0 );
// Creates an empty CodeNamespaceCollection.
CodeNamespaceCollection collection = new CodeNamespaceCollection();
// Adds a CodeNamespace to the collection.
collection.Add( new CodeNamespace("TestNamespace") );
// Adds an array of CodeNamespace objects to the collection.
CodeNamespace[] namespaces = { new CodeNamespace("TestNamespace1"), new CodeNamespace("TestNamespace2") };
collection.AddRange( namespaces );
// Adds a collection of CodeNamespace objects to the collection.
CodeNamespaceCollection namespacesCollection = new CodeNamespaceCollection();
namespacesCollection.Add( new CodeNamespace("TestNamespace1") );
namespacesCollection.Add( new CodeNamespace("TestNamespace2") );
collection.AddRange( namespacesCollection );
// Tests for the presence of a CodeNamespace in the collection,
// and retrieves its index if it is found.
CodeNamespace testNamespace = new CodeNamespace("TestNamespace");
int itemIndex = -1;
if( collection.Contains( testNamespace ) )
itemIndex = collection.IndexOf( testNamespace );
// Copies the contents of the collection beginning at index 0,
// to the specified CodeNamespace array.
// 'namespaces' is a CodeNamespace array.
collection.CopyTo( namespaces, 0 );
// Retrieves the count of the items in the collection.
int collectionCount = collection.Count;
// Inserts a CodeNamespace at index 0 of the collection.
collection.Insert( 0, new CodeNamespace("TestNamespace") );
// Removes the specified CodeNamespace from the collection.
CodeNamespace namespace_ = new CodeNamespace("TestNamespace");
collection.Remove( namespace_ );
// Removes the CodeNamespace at index 0.
collection.RemoveAt(0);
' Creates an empty CodeNamespaceCollection.
Dim collection As New CodeNamespaceCollection()
' Adds a CodeNamespace to the collection.
collection.Add(New CodeNamespace("TestNamespace"))
' Adds an array of CodeNamespace objects to the collection.
Dim namespaces As CodeNamespace() = {New CodeNamespace("TestNamespace1"), New CodeNamespace("TestNamespace2")}
collection.AddRange(namespaces)
' Adds a collection of CodeNamespace objects to the collection.
Dim namespacesCollection As New CodeNamespaceCollection()
namespacesCollection.Add(New CodeNamespace("TestNamespace1"))
namespacesCollection.Add(New CodeNamespace("TestNamespace2"))
collection.AddRange(namespacesCollection)
' Tests for the presence of a CodeNamespace in the collection,
' and retrieves its index if it is found.
Dim testNamespace As New CodeNamespace("TestNamespace")
Dim itemIndex As Integer = -1
If collection.Contains(testNamespace) Then
itemIndex = collection.IndexOf(testNamespace)
End If
' Copies the contents of the collection beginning at index 0,
' to the specified CodeNamespace array.
' 'namespaces' is a CodeNamespace array.
collection.CopyTo(namespaces, 0)
' Retrieves the count of the items in the collection.
Dim collectionCount As Integer = collection.Count
' Inserts a CodeNamespace at index 0 of the collection.
collection.Insert(0, New CodeNamespace("TestNamespace"))
' Removes the specified CodeNamespace from the collection.
Dim namespace_ As New CodeNamespace("TestNamespace")
collection.Remove(namespace_)
' Removes the CodeNamespace at index 0.
collection.RemoveAt(0)
注釈
CodeNamespaceCollection クラスには、一連の CodeNamespace オブジェクトの格納に使用できる単純なコレクション オブジェクトが用意されています。
コンストラクター
CodeNamespaceCollection() |
CodeNamespaceCollection クラスの新しいインスタンスを初期化します。 |
CodeNamespaceCollection(CodeNamespace[]) |
CodeNamespaceCollection オブジェクトの指定した配列を格納する CodeNamespace クラスの新しいインスタンスを初期化します。 |
CodeNamespaceCollection(CodeNamespaceCollection) |
指定したソース コレクションの要素を格納する CodeNamespaceCollection クラスの新しいインスタンスを初期化します。 |
プロパティ
Capacity |
CollectionBase に格納できる要素の数を取得または設定します。 (継承元 CollectionBase) |
Count |
CollectionBase インスタンスに含まれる要素の数を取得します。 このプロパティはオーバーライドできません。 (継承元 CollectionBase) |
InnerList |
ArrayList インスタンス内の要素のリストを格納する CollectionBase を取得します。 (継承元 CollectionBase) |
Item[Int32] |
コレクション内の指定したインデックスでの CodeNamespaceCollection オブジェクトを取得または設定します。 |
List |
IList インスタンス内の要素のリストを格納する CollectionBase を取得します。 (継承元 CollectionBase) |
メソッド
Add(CodeNamespace) |
指定した CodeNamespace オブジェクトをコレクションに追加します。 |
AddRange(CodeNamespace[]) |
指定した CodeNamespace 配列の要素をコレクションの末尾にコピーします。 |
AddRange(CodeNamespaceCollection) |
指定した CodeNamespaceCollection オブジェクトの内容をコレクションの末尾に追加します。 |
Clear() |
CollectionBase インスタンスからすべてのオブジェクトを削除します。 このメソッドはオーバーライドできません。 (継承元 CollectionBase) |
Contains(CodeNamespace) |
指定した CodeNamespace オブジェクトがコレクションに含まれているかどうかを示す値を取得します。 |
CopyTo(CodeNamespace[], Int32) |
指定したインデックスをコピー開始位置として、1 次元の Array インスタンスにコレクション オブジェクトをコピーします。 |
Equals(Object) |
指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。 (継承元 Object) |
GetEnumerator() |
CollectionBase インスタンスを反復処理する列挙子を返します。 (継承元 CollectionBase) |
GetHashCode() |
既定のハッシュ関数として機能します。 (継承元 Object) |
GetType() |
現在のインスタンスの Type を取得します。 (継承元 Object) |
IndexOf(CodeNamespace) |
指定された CodeNamespace オブジェクトが CodeNamespaceCollection コレクション内に存在する場合は、コレクション内でのそのインデックスを取得します。 |
Insert(Int32, CodeNamespace) |
このコレクション内の指定したインデックス位置に、指定した CodeNamespace オブジェクトを挿入します。 |
MemberwiseClone() |
現在の Object の簡易コピーを作成します。 (継承元 Object) |
OnClear() |
CollectionBase インスタンスの内容を消去しているときに、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
OnClearComplete() |
CollectionBase インスタンスの内容を消去した後に、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
OnInsert(Int32, Object) |
CollectionBase インスタンスに新しい要素を挿入する前に、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
OnInsertComplete(Int32, Object) |
CollectionBase インスタンスに新しい要素を挿入した後に、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
OnRemove(Int32, Object) |
CollectionBase インスタンスから要素を削除するときに、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
OnRemoveComplete(Int32, Object) |
CollectionBase インスタンスから要素を削除した後に、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
OnSet(Int32, Object, Object) |
CollectionBase インスタンスに値を設定する前に、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
OnSetComplete(Int32, Object, Object) |
CollectionBase インスタンスに値を設定した後に、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
OnValidate(Object) |
値を検証するときに、追加のカスタム プロセスを実行します。 (継承元 CollectionBase) |
Remove(CodeNamespace) |
指定した CodeNamespace オブジェクトをコレクションから削除します。 |
RemoveAt(Int32) |
CollectionBase インスタンスの指定したインデックスにある要素を削除します。 このメソッドはオーバーライドできません。 (継承元 CollectionBase) |
ToString() |
現在のオブジェクトを表す文字列を返します。 (継承元 Object) |
明示的なインターフェイスの実装
拡張メソッド
Cast<TResult>(IEnumerable) |
IEnumerable の要素を、指定した型にキャストします。 |
OfType<TResult>(IEnumerable) |
指定された型に基づいて IEnumerable の要素をフィルター処理します。 |
AsParallel(IEnumerable) |
クエリの並列化を有効にします。 |
AsQueryable(IEnumerable) |
IEnumerable を IQueryable に変換します。 |
適用対象
こちらもご覧ください
.NET