EventDescriptorCollection.Sort Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mengurutkan anggota dari ini EventDescriptorCollection.
Overload
Sort(String[], IComparer) |
Mengurutkan anggota ini EventDescriptorCollection, dengan urutan sortir tertentu dan IComparer. |
Sort(String[]) |
Mengurutkan anggota ini EventDescriptorCollection, dengan urutan pengurutan yang ditentukan. |
Sort() |
Mengurutkan anggota ini EventDescriptorCollection, menggunakan pengurutan default untuk koleksi ini, yang biasanya alfabet. |
Sort(IComparer) |
Mengurutkan anggota ini EventDescriptorCollection, menggunakan yang ditentukan IComparer. |
Sort(String[], IComparer)
- Sumber:
- EventDescriptorCollection.cs
- Sumber:
- EventDescriptorCollection.cs
- Sumber:
- EventDescriptorCollection.cs
Mengurutkan anggota ini EventDescriptorCollection, dengan urutan sortir tertentu dan IComparer.
public:
virtual System::ComponentModel::EventDescriptorCollection ^ Sort(cli::array <System::String ^> ^ names, System::Collections::IComparer ^ comparer);
public virtual System.ComponentModel.EventDescriptorCollection Sort (string[] names, System.Collections.IComparer comparer);
abstract member Sort : string[] * System.Collections.IComparer -> System.ComponentModel.EventDescriptorCollection
override this.Sort : string[] * System.Collections.IComparer -> System.ComponentModel.EventDescriptorCollection
Public Overridable Function Sort (names As String(), comparer As IComparer) As EventDescriptorCollection
Parameter
- names
- String[]
Array string yang menjelaskan urutan untuk mengurutkan EventDescriptor objek dalam koleksi.
- comparer
- IComparer
Yang IComparer digunakan untuk mengurutkan EventDescriptor objek dalam koleksi ini.
Mengembalikan
Yang baru EventDescriptorCollection.
Contoh
Contoh kode berikut menentukan urutan pengurutan untuk metode .Sort EventDescriptorCollection Jika berisi empat EventDescriptor objek dengan nama A
, , B
, C
dan D
, properti myNewColl
akan diurutkan dalam urutan D
, , B
A
, dan C
.
array<String^>^ temp0 = {"D","B"};
myNewColl = this->Sort( temp0 );
myNewColl = this.Sort(new string[]{"D", "B"});
myNewColl = Me.Sort(New String() {"D", "B"})
Keterangan
Urutan pengurutan yang ditentukan diterapkan terlebih dahulu, diikuti dengan pengurutan menggunakan yang ditentukan IComparer.
Catatan
Atribut HostProtectionAttribute yang diterapkan ke kelas ini memiliki nilai properti berikut Resources : Synchronization. HostProtectionAttribute tidak memengaruhi aplikasi desktop (yang biasanya dimulai dengan mengklik dua kali ikon, mengetik perintah, atau memasukkan URL di browser). Untuk informasi selengkapnya, lihat HostProtectionAttribute kelas atau SQL Server Atribut Pemrograman dan Perlindungan Host.
Lihat juga
Berlaku untuk
Sort(String[])
- Sumber:
- EventDescriptorCollection.cs
- Sumber:
- EventDescriptorCollection.cs
- Sumber:
- EventDescriptorCollection.cs
Mengurutkan anggota ini EventDescriptorCollection, dengan urutan pengurutan yang ditentukan.
public:
virtual System::ComponentModel::EventDescriptorCollection ^ Sort(cli::array <System::String ^> ^ names);
public virtual System.ComponentModel.EventDescriptorCollection Sort (string[] names);
abstract member Sort : string[] -> System.ComponentModel.EventDescriptorCollection
override this.Sort : string[] -> System.ComponentModel.EventDescriptorCollection
Public Overridable Function Sort (names As String()) As EventDescriptorCollection
Parameter
- names
- String[]
Array string yang menjelaskan urutan untuk mengurutkan EventDescriptor objek dalam koleksi.
Mengembalikan
Yang baru EventDescriptorCollection.
Contoh
Contoh kode berikut menentukan urutan pengurutan untuk metode .Sort EventDescriptorCollection Jika berisi empat EventDescriptor objek dengan nama A
, , B
, C
dan D
, properti myNewColl
akan diurutkan dalam urutan D
, , B
A
, dan C
.
array<String^>^ temp0 = {"D","B"};
myNewColl = this->Sort( temp0 );
myNewColl = this.Sort(new string[]{"D", "B"});
myNewColl = Me.Sort(New String() {"D", "B"})
Keterangan
Urutan yang ditentukan diterapkan terlebih dahulu, diikuti dengan pengurutan default untuk koleksi ini, yang biasanya alfabet.
Catatan
Atribut HostProtectionAttribute yang diterapkan ke kelas ini memiliki nilai properti berikut Resources : Synchronization. HostProtectionAttribute tidak memengaruhi aplikasi desktop (yang biasanya dimulai dengan mengklik dua kali ikon, mengetik perintah, atau memasukkan URL di browser). Untuk informasi selengkapnya, lihat HostProtectionAttribute kelas atau SQL Server Atribut Pemrograman dan Perlindungan Host.
Lihat juga
Berlaku untuk
Sort()
- Sumber:
- EventDescriptorCollection.cs
- Sumber:
- EventDescriptorCollection.cs
- Sumber:
- EventDescriptorCollection.cs
Mengurutkan anggota ini EventDescriptorCollection, menggunakan pengurutan default untuk koleksi ini, yang biasanya alfabet.
public:
virtual System::ComponentModel::EventDescriptorCollection ^ Sort();
public virtual System.ComponentModel.EventDescriptorCollection Sort ();
abstract member Sort : unit -> System.ComponentModel.EventDescriptorCollection
override this.Sort : unit -> System.ComponentModel.EventDescriptorCollection
Public Overridable Function Sort () As EventDescriptorCollection
Mengembalikan
Yang baru EventDescriptorCollection.
Contoh
Contoh kode berikut menentukan urutan pengurutan untuk metode .Sort EventDescriptorCollection Jika berisi empat EventDescriptor objek dengan nama A
, , B
, C
dan D
, properti myNewColl
akan diurutkan dalam urutan D
, , B
A
, dan C
.
array<String^>^ temp0 = {"D","B"};
myNewColl = this->Sort( temp0 );
myNewColl = this.Sort(new string[]{"D", "B"});
myNewColl = Me.Sort(New String() {"D", "B"})
Keterangan
Catatan
Atribut HostProtectionAttribute yang diterapkan ke kelas ini memiliki nilai properti berikut Resources : Synchronization. HostProtectionAttribute tidak memengaruhi aplikasi desktop (yang biasanya dimulai dengan mengklik dua kali ikon, mengetik perintah, atau memasukkan URL di browser). Untuk informasi selengkapnya, lihat HostProtectionAttribute kelas atau SQL Server Atribut Pemrograman dan Perlindungan Host.
Berlaku untuk
Sort(IComparer)
- Sumber:
- EventDescriptorCollection.cs
- Sumber:
- EventDescriptorCollection.cs
- Sumber:
- EventDescriptorCollection.cs
Mengurutkan anggota ini EventDescriptorCollection, menggunakan yang ditentukan IComparer.
public:
virtual System::ComponentModel::EventDescriptorCollection ^ Sort(System::Collections::IComparer ^ comparer);
public virtual System.ComponentModel.EventDescriptorCollection Sort (System.Collections.IComparer comparer);
abstract member Sort : System.Collections.IComparer -> System.ComponentModel.EventDescriptorCollection
override this.Sort : System.Collections.IComparer -> System.ComponentModel.EventDescriptorCollection
Public Overridable Function Sort (comparer As IComparer) As EventDescriptorCollection
Parameter
- comparer
- IComparer
Yang IComparer digunakan untuk mengurutkan EventDescriptor objek dalam koleksi ini.
Mengembalikan
Yang baru EventDescriptorCollection.
Contoh
Contoh kode berikut menentukan urutan pengurutan untuk metode .Sort EventDescriptorCollection Jika berisi empat EventDescriptor objek dengan nama A
, , B
, C
dan D
, properti myNewColl
akan diurutkan dalam urutan D
, , B
A
, dan C
.
array<String^>^ temp0 = {"D","B"};
myNewColl = this->Sort( temp0 );
myNewColl = this.Sort(new string[]{"D", "B"});
myNewColl = Me.Sort(New String() {"D", "B"})
Keterangan
Yang ditentukan IComparer diterapkan terlebih dahulu, diikuti dengan pengurutan default untuk koleksi ini, yang biasanya alfabet.
Catatan
Atribut HostProtectionAttribute yang diterapkan ke kelas ini memiliki nilai properti berikut Resources : Synchronization. HostProtectionAttribute tidak memengaruhi aplikasi desktop (yang biasanya dimulai dengan mengklik dua kali ikon, mengetik perintah, atau memasukkan URL di browser). Untuk informasi selengkapnya, lihat HostProtectionAttribute kelas atau SQL Server Atribut Pemrograman dan Perlindungan Host.