PropertyDescriptorCollection.Sort 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
排序這個集合的成員。
多載
Sort() |
使用這個集合的預設排序,通常是依字母順序,排序這個集合的成員。 |
Sort(IComparer) |
使用指定的 IComparer,排序這個集合的成員。 |
Sort(String[]) |
排序這個集合的成員。 首先會套用指定的順序,其後是這個集合的預設排序,通常是依字母順序。 |
Sort(String[], IComparer) |
排序這個集合的成員。 首先會套用指定的順序,其後是使用指定 IComparer 的排序。 |
Sort()
使用這個集合的預設排序,通常是依字母順序,排序這個集合的成員。
public:
virtual System::ComponentModel::PropertyDescriptorCollection ^ Sort();
public virtual System.ComponentModel.PropertyDescriptorCollection Sort ();
abstract member Sort : unit -> System.ComponentModel.PropertyDescriptorCollection
override this.Sort : unit -> System.ComponentModel.PropertyDescriptorCollection
Public Overridable Function Sort () As PropertyDescriptorCollection
傳回
新的 PropertyDescriptorCollection,包含已排序的 PropertyDescriptor 物件。
適用於
Sort(IComparer)
使用指定的 IComparer,排序這個集合的成員。
public:
virtual System::ComponentModel::PropertyDescriptorCollection ^ Sort(System::Collections::IComparer ^ comparer);
public virtual System.ComponentModel.PropertyDescriptorCollection Sort (System.Collections.IComparer comparer);
public virtual System.ComponentModel.PropertyDescriptorCollection Sort (System.Collections.IComparer? comparer);
abstract member Sort : System.Collections.IComparer -> System.ComponentModel.PropertyDescriptorCollection
override this.Sort : System.Collections.IComparer -> System.ComponentModel.PropertyDescriptorCollection
Public Overridable Function Sort (comparer As IComparer) As PropertyDescriptorCollection
參數
- comparer
- IComparer
比較子,用於將這個集合中的 PropertyDescriptor 物件排序。
傳回
新的 PropertyDescriptorCollection,包含已排序的 PropertyDescriptor 物件。
另請參閱
適用於
Sort(String[])
排序這個集合的成員。 首先會套用指定的順序,其後是這個集合的預設排序,通常是依字母順序。
public:
virtual System::ComponentModel::PropertyDescriptorCollection ^ Sort(cli::array <System::String ^> ^ names);
public virtual System.ComponentModel.PropertyDescriptorCollection Sort (string[] names);
public virtual System.ComponentModel.PropertyDescriptorCollection Sort (string[]? names);
abstract member Sort : string[] -> System.ComponentModel.PropertyDescriptorCollection
override this.Sort : string[] -> System.ComponentModel.PropertyDescriptorCollection
Public Overridable Function Sort (names As String()) As PropertyDescriptorCollection
參數
- names
- String[]
字串的陣列,描述要將這個集合中 PropertyDescriptor 物件排序的順序。
傳回
新的 PropertyDescriptorCollection,包含已排序的 PropertyDescriptor 物件。
範例
下列程式代碼範例會定義 方法的 Sort 排序順序。 PropertyDescriptorCollection如果 包含名稱為 A
、B
、 C
和 D
的四PropertyDescriptor個物件,則 的屬性myNewColl
會依、 B
、 A
和 C
的順序D
排序。
array<String^>^ temp0 = {"D","B"};
myNewColl = this->Sort( temp0 );
myNewColl = this.Sort(new string[]{"D", "B"});
myNewColl = Me.Sort(New String() {"D", "B"})
另請參閱
適用於
Sort(String[], IComparer)
排序這個集合的成員。 首先會套用指定的順序,其後是使用指定 IComparer 的排序。
public:
virtual System::ComponentModel::PropertyDescriptorCollection ^ Sort(cli::array <System::String ^> ^ names, System::Collections::IComparer ^ comparer);
public virtual System.ComponentModel.PropertyDescriptorCollection Sort (string[] names, System.Collections.IComparer comparer);
public virtual System.ComponentModel.PropertyDescriptorCollection Sort (string[]? names, System.Collections.IComparer? comparer);
abstract member Sort : string[] * System.Collections.IComparer -> System.ComponentModel.PropertyDescriptorCollection
override this.Sort : string[] * System.Collections.IComparer -> System.ComponentModel.PropertyDescriptorCollection
Public Overridable Function Sort (names As String(), comparer As IComparer) As PropertyDescriptorCollection
參數
- names
- String[]
字串的陣列,描述要將這個集合中 PropertyDescriptor 物件排序的順序。
- comparer
- IComparer
比較子,用於將這個集合中的 PropertyDescriptor 物件排序。
傳回
新的 PropertyDescriptorCollection,包含已排序的 PropertyDescriptor 物件。
範例
下列程式代碼範例會定義 方法的 Sort 排序順序。 PropertyDescriptorCollection如果 包含名稱為 A
、B
、 C
和 D
的四PropertyDescriptor個物件,則 的屬性myNewColl
會依、 B
、 A
和 C
的順序D
排序。
array<String^>^ temp0 = {"D","B"};
myNewColl = this->Sort( temp0 );
myNewColl = this.Sort(new string[]{"D", "B"});
myNewColl = Me.Sort(New String() {"D", "B"})