共用方式為


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 屬性值: SynchronizationHostProtectionAttribute 不會影響桌面應用程式 (這些應用程式的啟動方式一般都是按兩下圖示、輸入命令或在瀏覽器輸入 URL)。 如需詳細資訊,請參閱 HostProtectionAttribute 類別或 SQL Server 程式設計與主機保護屬性

另請參閱

適用於

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 排序順序。 EventDescriptorCollection如果 包含名稱為 、BCD的四EventDescriptor個物件A,則會依、 BAC的順序D排序這個 EventDescriptorCollection 屬性。

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

備註

注意

HostProtectionAttribute 用至這個類別的屬性具有下列 Resources 屬性值: SynchronizationHostProtectionAttribute 不會影響桌面應用程式 (這些應用程式的啟動方式一般都是按兩下圖示、輸入命令或在瀏覽器輸入 URL)。 如需詳細資訊,請參閱 HostProtectionAttribute 類別或 SQL Server 程式設計與主機保護屬性

另請參閱

適用於