EventDescriptorCollection.InternalSort メソッド

定義

EventDescriptorCollection のメンバーを並べ替えます。

オーバーロード

InternalSort(IComparer)

指定した EventDescriptorCollection を使用して、IComparer のメンバーを並べ替えます。

InternalSort(String[])

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

InternalSort(IComparer)

ソース:
EventDescriptorCollection.cs
ソース:
EventDescriptorCollection.cs
ソース:
EventDescriptorCollection.cs

指定した EventDescriptorCollection を使用して、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

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

注釈

パラメーターが の sorter 場合、 null既定の並べ替え順序が使用されます。

注意

HostProtectionAttributeこのクラスに適用される属性のプロパティ値は Resources です。 Synchronization HostProtectionAttribute は、デスクトップ アプリケーション (通常、アイコンのダブルクリック、コマンドの入力、またはブラウザーへの URL の入力により起動されます) には影響しません。 詳細については、「クラス」または「プログラミング属性とホスト保護属性SQL Server」を参照してくださいHostProtectionAttribute

こちらもご覧ください

適用対象

InternalSort(String[])

ソース:
EventDescriptorCollection.cs
ソース:
EventDescriptorCollection.cs
ソース:
EventDescriptorCollection.cs

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

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[]

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

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

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

注釈

注意

HostProtectionAttributeこのクラスに適用される属性のプロパティ値は Resources です。 Synchronization HostProtectionAttribute は、デスクトップ アプリケーション (通常、アイコンのダブルクリック、コマンドの入力、またはブラウザーへの URL の入力により起動されます) には影響しません。 詳細については、「クラス」または「プログラミング属性とホスト保護属性SQL Server」を参照してくださいHostProtectionAttribute

こちらもご覧ください

適用対象