PropertyDescriptorCollection.InternalSort メソッド

定義

このコレクションのメンバーを並べ替えます。

オーバーロード

InternalSort(IComparer)

指定した IComparer を使用して、コレクションのメンバーを並べ替えます。

InternalSort(String[])

このコレクションのメンバーを並べ替えます。 指定した順序が最初に適用され、次にコレクションの既定の並べ替え順序が適用されます。既定の並べ替え順序は、通常はアルファベット順です。

InternalSort(IComparer)

ソース:
PropertyDescriptorCollection.cs
ソース:
PropertyDescriptorCollection.cs
ソース:
PropertyDescriptorCollection.cs

指定した IComparer を使用して、コレクションのメンバーを並べ替えます。

protected:
 void InternalSort(System::Collections::IComparer ^ sorter);
protected void InternalSort (System.Collections.IComparer sorter);
protected void InternalSort (System.Collections.IComparer? sorter);
member this.InternalSort : System.Collections.IComparer -> unit
Protected Sub InternalSort (sorter As IComparer)

パラメーター

sorter
IComparer

コレクション内の PropertyDescriptor オブジェクトを並べ替えるために使用する比較子。

こちらもご覧ください

適用対象

InternalSort(String[])

ソース:
PropertyDescriptorCollection.cs
ソース:
PropertyDescriptorCollection.cs
ソース:
PropertyDescriptorCollection.cs

このコレクションのメンバーを並べ替えます。 指定した順序が最初に適用され、次にコレクションの既定の並べ替え順序が適用されます。既定の並べ替え順序は、通常はアルファベット順です。

protected:
 void InternalSort(cli::array <System::String ^> ^ names);
protected void InternalSort (string[] names);
protected void InternalSort (string[]? names);
member this.InternalSort : string[] -> unit
Protected Sub InternalSort (names As String())

パラメーター

names
String[]

コレクション内の PropertyDescriptor オブジェクトを並べ替える順序を記述する文字列の配列。

次のコード例では、 メソッドの並べ替え順序を InternalSort 定義します。 にPropertyDescriptorCollectionBCおよび Dという名前Aの 4 つのPropertyDescriptorオブジェクトが含まれている場合、 のmyNewCollプロパティは、、BA、および Cの順序Dで並べ替えられます。

array<String^>^ temp0 = {"D","B"};
this->InternalSort( temp0 );
this.InternalSort(new string[]{"D", "B"});
Me.InternalSort(New String() {"D", "B"})

こちらもご覧ください

適用対象