EventDescriptorCollection.InternalSort 方法

定义

将此 EventDescriptorCollection 的成员排序。

重载

InternalSort(IComparer)

使用指定的 EventDescriptorCollection 将此 IComparer 的成员排序。

InternalSort(String[])

将此 EventDescriptorCollection 的成员排序。 首先应用指定的顺序,然后应用此集合的默认排序,后者通常为字母顺序。

InternalSort(IComparer)

Source:
EventDescriptorCollection.cs
Source:
EventDescriptorCollection.cs
Source:
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[])

Source:
EventDescriptorCollection.cs
Source:
EventDescriptorCollection.cs
Source:
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如果 包含名为 、BCDAEventDescriptor个对象,则其EventDescriptorCollection属性将按 、、 BAC的顺序D排序。

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编程和主机保护属性

另请参阅

适用于