NameObjectCollectionBase クラス
アセンブリ: System (system.dll 内)

<SerializableAttribute> _ Public MustInherit Class NameObjectCollectionBase Implements ICollection, IEnumerable, ISerializable, IDeserializationCallback
[SerializableAttribute] public abstract class NameObjectCollectionBase : ICollection, IEnumerable, ISerializable, IDeserializationCallback
[SerializableAttribute] public ref class NameObjectCollectionBase abstract : ICollection, IEnumerable, ISerializable, IDeserializationCallback

NameObjectCollectionBase の容量は、NameObjectCollectionBase が保持できる要素数になります。NameObjectCollectionBase の既定の初期量はゼロです。NameObjectCollectionBase に要素を追加すると、必要に応じて、再割り当てを行うことによって容量が自動的に増加します。
ハッシュ コード プロバイダは、キーに対するハッシュ コードを NameObjectCollectionBase インスタンスに提供します。既定のハッシュ コード プロバイダは CaseInsensitiveHashCodeProvider です。
比較演算子は 2 つのキーが等しいかどうかを判断します。既定の比較演算子は CaseInsensitiveComparer です。
.NET Framework Version 1.0 の場合、このクラスはカルチャに依存した文字列比較を使用します。ただし、.NET Framework Version 1.1 以降の場合、このクラスは文字列を比較するときに CultureInfo.InvariantCulture を使用します。カルチャが比較と並べ替えに与える影響の詳細については、「固有カルチャのデータの比較と並べ替え固有カルチャのデータの比較と並べ替え」および「カルチャを認識しない文字列操作の実行」を参照してください。
キーまたは値として null 参照 (Visual Basic では Nothing) を使用できます。
![]() |
---|
BaseGet メソッドでは、指定したキーが見つからないために返される null 参照 (Visual Basic では Nothing) と、キーに関連付けられている値が null 参照 (Visual Basic では Nothing) であるために返される null 参照 (Visual Basic では Nothing) とが区別されません。 |

NameObjectCollectionBase クラスを実装および使用する方法については、次のコード例を参照してください。
Imports System Imports System.Collections Imports System.Collections.Specialized Public Class MyCollection Inherits NameObjectCollectionBase ' Creates an empty collection. Public Sub New() End Sub 'New ' Adds elements from an IDictionary into the new collection. Public Sub New(d As IDictionary, bReadOnly As Boolean) Dim de As DictionaryEntry For Each de In d Me.BaseAdd(CType(de.Key, String), de.Value) Next de Me.IsReadOnly = bReadOnly End Sub 'New ' Gets a key-and-value pair (DictionaryEntry) using an index. Default Public ReadOnly Property Item(index As Integer) As DictionaryEntry Get return new DictionaryEntry( _ me.BaseGetKey(index), me.BaseGet(index) ) End Get End Property ' Gets or sets the value associated with the specified key. Default Public Property Item(key As String) As Object Get Return Me.BaseGet(key) End Get Set Me.BaseSet(key, value) End Set End Property ' Gets a String array that contains all the keys in the collection. Public ReadOnly Property AllKeys() As String() Get Return Me.BaseGetAllKeys() End Get End Property ' Gets an Object array that contains all the values in the collection. Public ReadOnly Property AllValues() As Array Get Return Me.BaseGetAllValues() End Get End Property ' Gets a String array that contains all the values in the collection. Public ReadOnly Property AllStringValues() As String() Get Return CType(Me.BaseGetAllValues(GetType(String)), String()) End Get End Property ' Gets a value indicating if the collection contains keys that are not null. Public ReadOnly Property HasKeys() As Boolean Get Return Me.BaseHasKeys() End Get End Property ' Adds an entry to the collection. Public Sub Add(key As String, value As Object) Me.BaseAdd(key, value) End Sub 'Add ' Removes an entry with the specified key from the collection. Overloads Public Sub Remove(key As String) Me.BaseRemove(key) End Sub 'Remove ' Removes an entry in the specified index from the collection. Overloads Public Sub Remove(index As Integer) Me.BaseRemoveAt(index) End Sub 'Remove ' Clears all the elements in the collection. Public Sub Clear() Me.BaseClear() End Sub 'Clear End Class 'MyCollection Public Class SamplesNameObjectCollectionBase Public Shared Sub Main() ' Creates and initializes a new MyCollection that is read-only. Dim d As New ListDictionary() d.Add("red", "apple") d.Add("yellow", "banana") d.Add("green", "pear") Dim myROCol As New MyCollection(d, True) ' Tries to add a new item. Try myROCol.Add("blue", "sky") Catch e As NotSupportedException Console.WriteLine(e.ToString()) End Try ' Displays the keys and values of the MyCollection. Console.WriteLine("Read-Only Collection:") PrintKeysAndValues(myROCol) ' Creates and initializes an empty MyCollection that is writable. Dim myRWCol As New MyCollection() ' Adds new items to the collection. myRWCol.Add("purple", "grape") myRWCol.Add("orange", "tangerine") myRWCol.Add("black", "berries") Console.WriteLine("Writable Collection (after adding values):") PrintKeysAndValues(myRWCol) ' Changes the value of one element. myRWCol("orange") = "grapefruit" Console.WriteLine("Writable Collection (after changing one value):") PrintKeysAndValues(myRWCol) ' Removes one item from the collection. myRWCol.Remove("black") Console.WriteLine("Writable Collection (after removing one value):") PrintKeysAndValues(myRWCol) ' Removes all elements from the collection. myRWCol.Clear() Console.WriteLine("Writable Collection (after clearing the collection):") PrintKeysAndValues(myRWCol) End Sub 'Main ' Prints the indexes, keys, and values. Public Shared Sub PrintKeysAndValues(myCol As MyCollection) Dim i As Integer For i = 0 To myCol.Count - 1 Console.WriteLine("[{0}] : {1}, {2}", i, myCol(i).Key, myCol(i).Value) Next i End Sub 'PrintKeysAndValues ' Prints the keys and values using AllKeys. Public Shared Sub PrintKeysAndValues2(myCol As MyCollection) Dim s As String For Each s In myCol.AllKeys Console.WriteLine("{0}, {1}", s, myCol(s)) Next s End Sub 'PrintKeysAndValues2 End Class 'SamplesNameObjectCollectionBase 'This code produces the following output. ' 'System.NotSupportedException: Collection is read-only. ' at System.Collections.Specialized.NameObjectCollectionBase.BaseAdd(String name, Object value) ' at SamplesNameObjectCollectionBase.Main() 'Read-Only Collection: '[0] : red, apple '[1] : yellow, banana '[2] : green, pear 'Writable Collection (after adding values): '[0] : purple, grape '[1] : orange, tangerine '[2] : black, berries 'Writable Collection (after changing one value): '[0] : purple, grape '[1] : orange, grapefruit '[2] : black, berries 'Writable Collection (after removing one value): '[0] : purple, grape '[1] : orange, grapefruit 'Writable Collection (after clearing the collection):
using System; using System.Collections; using System.Collections.Specialized; public class MyCollection : NameObjectCollectionBase { // Creates an empty collection. public MyCollection() { } // Adds elements from an IDictionary into the new collection. public MyCollection( IDictionary d, Boolean bReadOnly ) { foreach ( DictionaryEntry de in d ) { this.BaseAdd( (String) de.Key, de.Value ); } this.IsReadOnly = bReadOnly; } // Gets a key-and-value pair (DictionaryEntry) using an index. public DictionaryEntry this[ int index ] { get { return ( new DictionaryEntry( this.BaseGetKey(index), this.BaseGet(index) ) ); } } // Gets or sets the value associated with the specified key. public Object this[ String key ] { get { return( this.BaseGet( key ) ); } set { this.BaseSet( key, value ); } } // Gets a String array that contains all the keys in the collection. public String[] AllKeys { get { return( this.BaseGetAllKeys() ); } } // Gets an Object array that contains all the values in the collection. public Array AllValues { get { return( this.BaseGetAllValues() ); } } // Gets a String array that contains all the values in the collection. public String[] AllStringValues { get { return( (String[]) this.BaseGetAllValues( typeof( string ) )); } } // Gets a value indicating if the collection contains keys that are not null. public Boolean HasKeys { get { return( this.BaseHasKeys() ); } } // Adds an entry to the collection. public void Add( String key, Object value ) { this.BaseAdd( key, value ); } // Removes an entry with the specified key from the collection. public void Remove( String key ) { this.BaseRemove( key ); } // Removes an entry in the specified index from the collection. public void Remove( int index ) { this.BaseRemoveAt( index ); } // Clears all the elements in the collection. public void Clear() { this.BaseClear(); } } public class SamplesNameObjectCollectionBase { public static void Main() { // Creates and initializes a new MyCollection that is read-only. IDictionary d = new ListDictionary(); d.Add( "red", "apple" ); d.Add( "yellow", "banana" ); d.Add( "green", "pear" ); MyCollection myROCol = new MyCollection( d, true ); // Tries to add a new item. try { myROCol.Add( "blue", "sky" ); } catch ( NotSupportedException e ) { Console.WriteLine( e.ToString() ); } // Displays the keys and values of the MyCollection. Console.WriteLine( "Read-Only Collection:" ); PrintKeysAndValues( myROCol ); // Creates and initializes an empty MyCollection that is writable. MyCollection myRWCol = new MyCollection(); // Adds new items to the collection. myRWCol.Add( "purple", "grape" ); myRWCol.Add( "orange", "tangerine" ); myRWCol.Add( "black", "berries" ); Console.WriteLine( "Writable Collection (after adding values):" ); PrintKeysAndValues( myRWCol ); // Changes the value of one element. myRWCol["orange"] = "grapefruit"; Console.WriteLine( "Writable Collection (after changing one value):" ); PrintKeysAndValues( myRWCol ); // Removes one item from the collection. myRWCol.Remove( "black" ); Console.WriteLine( "Writable Collection (after removing one value):" ); PrintKeysAndValues( myRWCol ); // Removes all elements from the collection. myRWCol.Clear(); Console.WriteLine( "Writable Collection (after clearing the collection):" ); PrintKeysAndValues( myRWCol ); } // Prints the indexes, keys, and values. public static void PrintKeysAndValues( MyCollection myCol ) { for ( int i = 0; i < myCol.Count; i++ ) { Console.WriteLine( "[{0}] : {1}, {2}", i, myCol[i].Key, myCol[i].Value ); } } // Prints the keys and values using AllKeys. public static void PrintKeysAndValues2( MyCollection myCol ) { foreach ( String s in myCol.AllKeys ) { Console.WriteLine( "{0}, {1}", s, myCol[s] ); } } } /* This code produces the following output. System.NotSupportedException: Collection is read-only. at System.Collections.Specialized.NameObjectCollectionBase.BaseAdd(String name, Object value) at SamplesNameObjectCollectionBase.Main() Read-Only Collection: [0] : red, apple [1] : yellow, banana [2] : green, pear Writable Collection (after adding values): [0] : purple, grape [1] : orange, tangerine [2] : black, berries Writable Collection (after changing one value): [0] : purple, grape [1] : orange, grapefruit [2] : black, berries Writable Collection (after removing one value): [0] : purple, grape [1] : orange, grapefruit Writable Collection (after clearing the collection): */
#using <System.dll> using namespace System; using namespace System::Collections; using namespace System::Collections::Specialized; public ref class MyCollection : public NameObjectCollectionBase { private: DictionaryEntry^ _de; // Creates an empty collection. public: MyCollection() { _de = gcnew DictionaryEntry(); } // Adds elements from an IDictionary into the new collection. MyCollection( IDictionary^ d, Boolean bReadOnly ) { _de = gcnew DictionaryEntry(); for each ( DictionaryEntry^ de in d ) { this->BaseAdd( (String^) de->Key, de->Value ); } this->IsReadOnly = bReadOnly; } // Gets a key-and-value pair (DictionaryEntry) using an index. property DictionaryEntry^ default[ int ] { DictionaryEntry^ get(int index) { _de->Key = this->BaseGetKey(index); _de->Value = this->BaseGet(index); return( _de ); } } // Gets or sets the value associated with the specified key. property Object^ default[ String^ ] { Object^ get(String^ key) { return( this->BaseGet( key ) ); } void set( String^ key, Object^ value ) { this->BaseSet( key, value ); } } // Gets a String array that contains all the keys in the collection. property array<String^>^ AllKeys { array<String^>^ get() { return( (array<String^>^)this->BaseGetAllKeys() ); } } // Gets an Object array that contains all the values in the collection. property Array^ AllValues { Array^ get() { return( this->BaseGetAllValues() ); } } // Gets a String array that contains all the values in the collection. property array<String^>^ AllStringValues { array<String^>^ get() { return( (array<String^>^) this->BaseGetAllValues( String ::typeid )); } } // Gets a value indicating if the collection contains keys that are not null. property Boolean HasKeys { Boolean get() { return( this->BaseHasKeys() ); } } // Adds an entry to the collection. void Add( String^ key, Object^ value ) { this->BaseAdd( key, value ); } // Removes an entry with the specified key from the collection. void Remove( String^ key ) { this->BaseRemove( key ); } // Removes an entry in the specified index from the collection. void Remove( int index ) { this->BaseRemoveAt( index ); } // Clears all the elements in the collection. void Clear() { this->BaseClear(); } }; public ref class SamplesNameObjectCollectionBase { public: static void Main() { // Creates and initializes a new MyCollection that is read-only. IDictionary^ d = gcnew ListDictionary(); d->Add( "red", "apple" ); d->Add( "yellow", "banana" ); d->Add( "green", "pear" ); MyCollection^ myROCol = gcnew MyCollection( d, true ); // Tries to add a new item. try { myROCol->Add( "blue", "sky" ); } catch ( NotSupportedException^ e ) { Console::WriteLine( e->ToString() ); } // Displays the keys and values of the MyCollection. Console::WriteLine( "Read-Only Collection:" ); PrintKeysAndValues( myROCol ); // Creates and initializes an empty MyCollection that is writable. MyCollection^ myRWCol = gcnew MyCollection(); // Adds new items to the collection. myRWCol->Add( "purple", "grape" ); myRWCol->Add( "orange", "tangerine" ); myRWCol->Add( "black", "berries" ); Console::WriteLine( "Writable Collection (after adding values):" ); PrintKeysAndValues( myRWCol ); // Changes the value of one element. myRWCol["orange"] = "grapefruit"; Console::WriteLine( "Writable Collection (after changing one value):" ); PrintKeysAndValues( myRWCol ); // Removes one item from the collection. myRWCol->Remove( "black" ); Console::WriteLine( "Writable Collection (after removing one value):" ); PrintKeysAndValues( myRWCol ); // Removes all elements from the collection. myRWCol->Clear(); Console::WriteLine( "Writable Collection (after clearing the collection):" ); PrintKeysAndValues( myRWCol ); } // Prints the indexes, keys, and values. static void PrintKeysAndValues( MyCollection^ myCol ) { for ( int i = 0; i < myCol->Count; i++ ) { Console::WriteLine( "[{0}] : {1}, {2}", i, myCol[i]->Key, myCol[i]->Value ); } } // Prints the keys and values using AllKeys. static void PrintKeysAndValues2( MyCollection^ myCol ) { for each ( String^ s in myCol->AllKeys ) { Console::WriteLine( "{0}, {1}", s, myCol[s] ); } } }; int main() { SamplesNameObjectCollectionBase::Main(); } /* This code produces the following output. System.NotSupportedException: Collection is read-only. at System.Collections.Specialized.NameObjectCollectionBase.BaseAdd(String name, Object value) at SamplesNameObjectCollectionBase.Main() Read-Only Collection: [0] : red, apple [1] : yellow, banana [2] : green, pear Writable Collection (after adding values): [0] : purple, grape [1] : orange, tangerine [2] : black, berries Writable Collection (after changing one value): [0] : purple, grape [1] : orange, grapefruit [2] : black, berries Writable Collection (after removing one value): [0] : purple, grape [1] : orange, grapefruit Writable Collection (after clearing the collection): */
import System.* ; import System.Collections.* ; import System.Collections.Specialized.* ; public class MyCollection extends NameObjectCollectionBase { private DictionaryEntry _de = new DictionaryEntry(); // Creates an empty collection. public MyCollection() { } //MyCollection // Adds elements from an IDictionary into the new collection. public MyCollection(IDictionary d, boolean bReadOnly) { IDictionaryEnumerator objEnum = d.GetEnumerator(); while (objEnum.MoveNext()) { DictionaryEntry de = (DictionaryEntry)objEnum.get_Current(); this.BaseAdd(((String)(de.get_Key())), de.get_Value()); } this.set_IsReadOnly(bReadOnly); } //MyCollection // Gets a key-and-value pair (DictionaryEntry) using an index. /** @property */ public DictionaryEntry get_Item(int index) { _de.set_Key(this.BaseGetKey(index)); _de.set_Value(this.BaseGet(index)); return _de ; } //get_Item // Gets or sets the value associated with the specified key. /** @property */ public Object get_Item(String key) { return this.BaseGet(key) ; } //get_Item /** @property */ public void set_Item(String key, Object value) { this.BaseSet(key, value); } //set_Item // Gets a String array that contains all the keys in the collection. /** @property */ public String[] get_AllKeys() { return this.BaseGetAllKeys() ; } //get_AllKeys // Gets an Object array that contains all the values in the collection. /** @property */ public Array get_AllValues() { return this.BaseGetAllValues() ; } //get_AllValues // Gets a String array that contains all the values in the collection. /** @property */ public String[] get_AllStringValues() { return((String[])(this.BaseGetAllValues(Type.GetType("String")))) ; } //get_AllStringValues // Gets a value indicating if the collection contains keys that are not null /** @property */ public Boolean get_HasKeys() { return new Boolean(this.BaseHasKeys()) ; } //get_HasKeys // Adds an entry to the collection. public void Add(String key, Object value) { this.BaseAdd(key, value); } //Add // Removes an entry with the specified key from the collection. public void Remove(String key) { this.BaseRemove(key); } //Remove // Removes an entry in the specified index from the collection. public void Remove(int index) { this.BaseRemoveAt(index); } //Remove // Clears all the elements in the collection. public void Clear() { this.BaseClear(); } //Clear } //MyCollection public class SamplesNameObjectCollectionBase { public static void main(String[] args) { // Creates and initializes a new MyCollection that is read-only. IDictionary d = new ListDictionary(); d.Add("red", "apple"); d.Add("yellow", "banana"); d.Add("green", "pear"); MyCollection myROCol = new MyCollection(d, true); // Tries to add a new item. try { myROCol.Add("blue", "sky"); } catch (NotSupportedException e) { Console.WriteLine(e.ToString()); } // Displays the keys and values of the MyCollection. Console.WriteLine("Read-Only Collection:"); PrintKeysAndValues(myROCol); // Creates and initializes an empty MyCollection that is writable. MyCollection myRWCol = new MyCollection(); // Adds new items to the collection. myRWCol.Add("purple", "grape"); myRWCol.Add("orange", "tangerine"); myRWCol.Add("black", "berries"); Console.WriteLine("Writable Collection (after adding values):"); PrintKeysAndValues(myRWCol); // Changes the value of one element. myRWCol.set_Item( "orange" , "grapefruit" ); Console.WriteLine("Writable Collection (after changing one value):"); PrintKeysAndValues(myRWCol); // Removes one item from the collection. myRWCol.Remove("black"); Console.WriteLine("Writable Collection (after removing one value):"); PrintKeysAndValues(myRWCol); // Removes all elements from the collection. myRWCol.Clear(); Console.WriteLine("Writable Collection (after clearing the" + " collection):"); PrintKeysAndValues(myRWCol); } //main // Prints the indexes, keys, and values. public static void PrintKeysAndValues(MyCollection myCol) { for (int i=0; i < myCol.get_Count(); i++) { Console.WriteLine("[{0}] : {1}, {2}",System.Convert.ToString(i) , myCol.get_Item(i).get_Key(), myCol.get_Item(i).get_Value()); } } //PrintKeysAndValues // Prints the keys and values using AllKeys. public static void PrintKeysAndValues2(MyCollection myCol) { String str = new String(); for (int iCtr = 0; iCtr < myCol.get_Count(); iCtr++) { str = myCol.get_AllKeys()[iCtr]; Console.WriteLine("{0} , {1}", str, (myCol.get_Item(str)).ToString()); } } //PrintKeysAndValues2 } //SamplesNameObjectCollectionBase /* This code produces the following output. System.NotSupportedException: Collection is read-only. at System.Collections.Specialized.NameObjectCollectionBase.BaseAdd(String name, Object value) at SamplesNameObjectCollectionBase.main(String[] args) Read-Only Collection: [0] : red, apple [1] : yellow, banana [2] : green, pear Writable Collection (after adding values): [0] : purple, grape [1] : orange, tangerine [2] : black, berries Writable Collection (after changing one value): [0] : purple, grape [1] : orange, grapefruit [2] : black, berries Writable Collection (after removing one value): [0] : purple, grape [1] : orange, grapefruit Writable Collection (after clearing the collection): */


この型の public static (Visual Basic では Shared) メンバは、スレッド セーフです。すべてのインスタンス メンバがスレッド セーフになるかどうかは保証されていません。
この実装は、NameObjectCollectionBase 用の同期された (スレッド セーフな) ラッパーは提供しませんが、派生クラスでは、SyncRoot プロパティを使用して、同期した NameObjectCollectionBase を独自に作成できます。
コレクションの列挙処理は、本質的にはスレッド セーフな処理ではありません。コレクションが同期されている場合でも、他のスレッドがそのコレクションを変更する可能性はあり、そのような状況が発生すると列挙子は例外をスローします。列挙処理を確実にスレッド セーフに行うには、列挙中にコレクションをロックするか、他のスレッドによって行われた変更によってスローされる例外をキャッチします。

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


NameObjectCollectionBase コンストラクタ ()
アセンブリ: System (system.dll 内)


NameObjectCollectionBase の容量は、NameObjectCollectionBase が保持できる要素数になります。NameObjectCollectionBase に要素を追加すると、必要に応じて、内部の配列の再割り当てによって容量が自動的に増加します。
コレクションのサイズを推定できる場合は、初期量を指定すると、NameObjectCollectionBase に要素を追加するときに、サイズ変更操作を何度も実行する必要がなくなります。
ハッシュ コード プロバイダは、キーに対するハッシュ コードを NameObjectCollectionBase インスタンスに提供します。既定のハッシュ コード プロバイダは CaseInsensitiveHashCodeProvider です。
比較演算子は 2 つのキーが等しいかどうかを判断します。既定の比較演算子は CaseInsensitiveComparer です。

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


NameObjectCollectionBase コンストラクタ (SerializationInfo, StreamingContext)
アセンブリ: System (system.dll 内)

Dim info As SerializationInfo Dim context As StreamingContext Dim instance As New NameObjectCollectionBase(info, context)
protected function NameObjectCollectionBase ( info : SerializationInfo, context : StreamingContext )


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


NameObjectCollectionBase コンストラクタ (Int32)
アセンブリ: System (system.dll 内)



NameObjectCollectionBase の容量は、NameObjectCollectionBase が保持できる要素数になります。NameObjectCollectionBase に要素を追加すると、必要に応じて、内部の配列の再割り当てによって容量が自動的に増加します。
コレクションのサイズを推定できる場合は、初期量を指定すると、NameObjectCollectionBase に要素を追加するときに、サイズ変更操作を何度も実行する必要がなくなります。
ハッシュ コード プロバイダは、キーに対するハッシュ コードを NameObjectCollectionBase インスタンスに提供します。既定のハッシュ コード プロバイダは CaseInsensitiveHashCodeProvider です。
比較演算子は 2 つのキーが等しいかどうかを判断します。既定の比較演算子は CaseInsensitiveComparer です。

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


NameObjectCollectionBase コンストラクタ (IEqualityComparer)
アセンブリ: System (system.dll 内)

Dim equalityComparer As IEqualityComparer Dim instance As New NameObjectCollectionBase(equalityComparer)

NameObjectCollectionBase オブジェクトの容量は、NameObjectCollectionBase が保持できる要素数になります。NameObjectCollectionBase に要素を追加すると、必要に応じて、内部の配列の再割り当てによって容量が自動的に増加します。
コレクションのサイズを推定できる場合は、初期量を指定すると、NameObjectCollectionBase に要素を追加するときに、サイズ変更操作を何度も実行する必要がなくなります。
IEqualityComparer オブジェクトは、比較演算子とハッシュ コード プロバイダを組み合わせます。ハッシュ コード プロバイダは、NameObjectCollectionBase 内のキーにハッシュ コードを提供します。比較演算子は 2 つのキーが等しいかどうかを判断します。

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


NameObjectCollectionBase コンストラクタ (Int32, IEqualityComparer)
アセンブリ: System (system.dll 内)

Dim capacity As Integer Dim equalityComparer As IEqualityComparer Dim instance As New NameObjectCollectionBase(capacity, equalityComparer)
protected function NameObjectCollectionBase ( capacity : int, equalityComparer : IEqualityComparer )


NameObjectCollectionBase オブジェクトの容量は、NameObjectCollectionBase が保持できる要素数になります。NameObjectCollectionBase に要素を追加すると、必要に応じて、内部の配列の再割り当てによって容量が自動的に増加します。
コレクションのサイズを推定できる場合は、初期量を指定すると、NameObjectCollectionBase に要素を追加するときに、サイズ変更操作を何度も実行する必要がなくなります。
IEqualityComparer オブジェクトは、比較演算子とハッシュ コード プロバイダを組み合わせます。ハッシュ コード プロバイダは、NameObjectCollectionBase 内のキーにハッシュ コードを提供します。比較演算子は 2 つのキーが等しいかどうかを判断します。

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


NameObjectCollectionBase コンストラクタ

名前 | 説明 |
---|---|
NameObjectCollectionBase () | NameObjectCollectionBase クラスの新しい空のインスタンスを初期化します。 .NET Compact Framework によってサポートされています。 |
NameObjectCollectionBase (IEqualityComparer) | 空で、既定の初期量を備え、指定した IEqualityComparer オブジェクトを使用する、NameObjectCollectionBase クラスの新しいインスタンスを初期化します。 .NET Compact Framework によってサポートされています。 |
NameObjectCollectionBase (Int32) | 空で、指定した初期量を備え、既定のハッシュ コード プロバイダと既定の比較演算子を使用する、NameObjectCollectionBase クラスの新しいインスタンスを初期化します。 .NET Compact Framework によってサポートされています。 |
NameObjectCollectionBase (IHashCodeProvider, IComparer) | 空で、既定の初期量を備え、指定したハッシュ コード プロバイダと比較演算子を使用する、NameObjectCollectionBase クラスの新しいインスタンスを初期化します。 .NET Compact Framework によってサポートされています。 |
NameObjectCollectionBase (Int32, IEqualityComparer) | 空で、指定した初期量を備え、指定した IEqualityComparer オブジェクトを使用する、NameObjectCollectionBase クラスの新しいインスタンスを初期化します。 .NET Compact Framework によってサポートされています。 |
NameObjectCollectionBase (SerializationInfo, StreamingContext) | シリアル化でき、指定した System.Runtime.Serialization.SerializationInfo と System.Runtime.Serialization.StreamingContext を使用する、NameObjectCollectionBase クラスの新しいインスタンスを初期化します。 |
NameObjectCollectionBase (Int32, IHashCodeProvider, IComparer) | 空で、指定した初期量を備え、指定したハッシュ コード プロバイダと比較演算子を使用する、NameObjectCollectionBase クラスの新しいインスタンスを初期化します。 .NET Compact Framework によってサポートされています。 |

NameObjectCollectionBase コンストラクタ (IHashCodeProvider, IComparer)
メモ : このコンストラクタは、互換性のために残されています。
空で、既定の初期量を備え、指定したハッシュ コード プロバイダと比較演算子を使用する、NameObjectCollectionBase クラスの新しいインスタンスを初期化します。 名前空間: System.Collections.Specializedアセンブリ: System (system.dll 内)

<ObsoleteAttribute("Please use NameObjectCollectionBase(IEqualityComparer) instead.")> _ Protected Sub New ( _ hashProvider As IHashCodeProvider, _ comparer As IComparer _ )
Dim hashProvider As IHashCodeProvider Dim comparer As IComparer Dim instance As New NameObjectCollectionBase(hashProvider, comparer)
[ObsoleteAttribute("Please use NameObjectCollectionBase(IEqualityComparer) instead.")] protected NameObjectCollectionBase ( IHashCodeProvider hashProvider, IComparer comparer )
[ObsoleteAttribute(L"Please use NameObjectCollectionBase(IEqualityComparer) instead.")] protected: NameObjectCollectionBase ( IHashCodeProvider^ hashProvider, IComparer^ comparer )
/** @attribute ObsoleteAttribute("Please use NameObjectCollectionBase(IEqualityComparer) instead.") */ protected NameObjectCollectionBase ( IHashCodeProvider hashProvider, IComparer comparer )
ObsoleteAttribute("Please use NameObjectCollectionBase(IEqualityComparer) instead.") protected function NameObjectCollectionBase ( hashProvider : IHashCodeProvider, comparer : IComparer )

NameObjectCollectionBase の容量は、NameObjectCollectionBase が保持できる要素数になります。NameObjectCollectionBase に要素を追加すると、必要に応じて、内部の配列の再割り当てによって容量が自動的に増加します。
コレクションのサイズを推定できる場合は、初期量を指定すると、NameObjectCollectionBase に要素を追加するときに、サイズ変更操作を何度も実行する必要がなくなります。
ハッシュ コード プロバイダは、キーに対するハッシュ コードを NameObjectCollectionBase インスタンスに提供します。既定のハッシュ コード プロバイダは CaseInsensitiveHashCodeProvider です。
比較演算子は 2 つのキーが等しいかどうかを判断します。既定の比較演算子は CaseInsensitiveComparer です。

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。

サポート対象 : 1.0、1.1
2.0 では、互換性のために残されています (コンパイル時に警告)
.NET Compact Framework
サポート対象 : 1.0
2.0 では、互換性のために残されています (コンパイル時に警告)

NameObjectCollectionBase コンストラクタ (Int32, IHashCodeProvider, IComparer)
メモ : このコンストラクタは、互換性のために残されています。
空で、指定した初期量を備え、指定したハッシュ コード プロバイダと比較演算子を使用する、NameObjectCollectionBase クラスの新しいインスタンスを初期化します。 名前空間: System.Collections.Specializedアセンブリ: System (system.dll 内)

<ObsoleteAttribute("Please use NameObjectCollectionBase(Int32, IEqualityComparer) instead.")> _ Protected Sub New ( _ capacity As Integer, _ hashProvider As IHashCodeProvider, _ comparer As IComparer _ )
Dim capacity As Integer Dim hashProvider As IHashCodeProvider Dim comparer As IComparer Dim instance As New NameObjectCollectionBase(capacity, hashProvider, comparer)
[ObsoleteAttribute("Please use NameObjectCollectionBase(Int32, IEqualityComparer) instead.")] protected NameObjectCollectionBase ( int capacity, IHashCodeProvider hashProvider, IComparer comparer )
[ObsoleteAttribute(L"Please use NameObjectCollectionBase(Int32, IEqualityComparer) instead.")] protected: NameObjectCollectionBase ( int capacity, IHashCodeProvider^ hashProvider, IComparer^ comparer )
/** @attribute ObsoleteAttribute("Please use NameObjectCollectionBase(Int32, IEqualityComparer) instead.") */ protected NameObjectCollectionBase ( int capacity, IHashCodeProvider hashProvider, IComparer comparer )
ObsoleteAttribute("Please use NameObjectCollectionBase(Int32, IEqualityComparer) instead.") protected function NameObjectCollectionBase ( capacity : int, hashProvider : IHashCodeProvider, comparer : IComparer )


NameObjectCollectionBase の容量は、NameObjectCollectionBase が保持できる要素数になります。NameObjectCollectionBase に要素を追加すると、必要に応じて、内部の配列の再割り当てによって容量が自動的に増加します。
コレクションのサイズを推定できる場合は、初期量を指定すると、NameObjectCollectionBase に要素を追加するときに、サイズ変更操作を何度も実行する必要がなくなります。
ハッシュ コード プロバイダは、キーに対するハッシュ コードを NameObjectCollectionBase インスタンスに提供します。既定のハッシュ コード プロバイダは CaseInsensitiveHashCodeProvider です。
比較演算子は 2 つのキーが等しいかどうかを判断します。既定の比較演算子は CaseInsensitiveComparer です。

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。

サポート対象 : 1.0、1.1
2.0 では、互換性のために残されています (コンパイル時に警告)
.NET Compact Framework
サポート対象 : 1.0
2.0 では、互換性のために残されています (コンパイル時に警告)

NameObjectCollectionBase プロパティ

名前 | 説明 | |
---|---|---|
![]() | Keys | NameObjectCollectionBase インスタンス内のすべてのキーを格納する NameObjectCollectionBase.KeysCollection インスタンスを取得します。 |


名前 | 説明 | |
---|---|---|
![]() | System.Collections.ICollection.SyncRoot | NameObjectCollectionBase オブジェクトへのアクセスを同期するために使用できるオブジェクトを取得します。 |

NameObjectCollectionBase メソッド

名前 | 説明 | |
---|---|---|
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 ( Object から継承されます。) |
![]() | GetEnumerator | NameObjectCollectionBase を反復処理する列挙子を返します。 |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 ( Object から継承されます。) |
![]() | GetObjectData | ISerializable インターフェイスを実装し、NameObjectCollectionBase インスタンスをシリアル化するために必要なデータを返します。 |
![]() | GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) |
![]() | OnDeserialization | ISerializable インターフェイスを実装し、逆シリアル化が完了したときに逆シリアル化イベントを発生させます。 |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 ( Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | BaseAdd | 指定したキーと値を持つエントリを NameObjectCollectionBase インスタンスに追加します。 |
![]() | BaseClear | NameObjectCollectionBase インスタンスからすべてのエントリを削除します。 |
![]() | BaseGet | オーバーロードされます。 NameObjectCollectionBase インスタンスから、指定したエントリの値を取得します。 |
![]() | BaseGetAllKeys | NameObjectCollectionBase インスタンス内のすべてのキーを格納する String 配列を返します。 |
![]() | BaseGetAllValues | オーバーロードされます。 NameObjectCollectionBase インスタンス内のすべての値を格納する配列を返します。 |
![]() | BaseGetKey | NameObjectCollectionBase インスタンスの指定したインデックスにあるエントリのキーを取得します。 |
![]() | BaseHasKeys | NameObjectCollectionBase インスタンスが、キーが null 参照 (Visual Basic では Nothing) ではないエントリを格納しているかどうかを示す値を取得します。 |
![]() | BaseRemove | 指定したキーを持つエントリを NameObjectCollectionBase インスタンスから削除します。 |
![]() | BaseRemoveAt | NameObjectCollectionBase インスタンスの指定したインデックスにあるエントリを削除します。 |
![]() | BaseSet | オーバーロードされます。 NameObjectCollectionBase インスタンス内のエントリの値を設定します。 |
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 ( Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 ( Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | System.Collections.ICollection.CopyTo | NameObjectCollectionBase 全体を互換性のある 1 次元の Array にコピーします。コピー操作は、コピー先の配列の指定したインデックスから始まります。 |

NameObjectCollectionBase メンバ
関連付けられた String キーおよび Object 値のコレクションの abstract 基本クラスを提供します。これらのキーおよび値には、キーまたはインデックスのいずれかを使用してアクセスできます。
NameObjectCollectionBase データ型で公開されるメンバを以下の表に示します。


名前 | 説明 | |
---|---|---|
![]() | Keys | NameObjectCollectionBase インスタンス内のすべてのキーを格納する NameObjectCollectionBase.KeysCollection インスタンスを取得します。 |


名前 | 説明 | |
---|---|---|
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 (Object から継承されます。) |
![]() | GetEnumerator | NameObjectCollectionBase を反復処理する列挙子を返します。 |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 (Object から継承されます。) |
![]() | GetObjectData | ISerializable インターフェイスを実装し、NameObjectCollectionBase インスタンスをシリアル化するために必要なデータを返します。 |
![]() | GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) |
![]() | OnDeserialization | ISerializable インターフェイスを実装し、逆シリアル化が完了したときに逆シリアル化イベントを発生させます。 |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 (Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | BaseAdd | 指定したキーと値を持つエントリを NameObjectCollectionBase インスタンスに追加します。 |
![]() | BaseClear | NameObjectCollectionBase インスタンスからすべてのエントリを削除します。 |
![]() | BaseGet | オーバーロードされます。 NameObjectCollectionBase インスタンスから、指定したエントリの値を取得します。 |
![]() | BaseGetAllKeys | NameObjectCollectionBase インスタンス内のすべてのキーを格納する String 配列を返します。 |
![]() | BaseGetAllValues | オーバーロードされます。 NameObjectCollectionBase インスタンス内のすべての値を格納する配列を返します。 |
![]() | BaseGetKey | NameObjectCollectionBase インスタンスの指定したインデックスにあるエントリのキーを取得します。 |
![]() | BaseHasKeys | NameObjectCollectionBase インスタンスが、キーが null 参照 (Visual Basic では Nothing) ではないエントリを格納しているかどうかを示す値を取得します。 |
![]() | BaseRemove | 指定したキーを持つエントリを NameObjectCollectionBase インスタンスから削除します。 |
![]() | BaseRemoveAt | NameObjectCollectionBase インスタンスの指定したインデックスにあるエントリを削除します。 |
![]() | BaseSet | オーバーロードされます。 NameObjectCollectionBase インスタンス内のエントリの値を設定します。 |
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 (Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | System.Collections.ICollection.CopyTo | NameObjectCollectionBase 全体を互換性のある 1 次元の Array にコピーします。コピー操作は、コピー先の配列の指定したインデックスから始まります。 |
![]() | System.Collections.ICollection.SyncRoot | NameObjectCollectionBase オブジェクトへのアクセスを同期するために使用できるオブジェクトを取得します。 |

- NameObjectCollectionBaseのページへのリンク