PropertyDescriptorCollection::Sort Method (array<String^>^)

 

Sorts the members of this collection. The specified order is applied first, followed by the default sort for this collection, which is usually alphabetical.

Namespace:   System.ComponentModel
Assembly:  System (in System.dll)

public:
virtual PropertyDescriptorCollection^ Sort(
	array<String^>^ names
)

Parameters

names
Type: array<System::String^>^

An array of strings describing the order in which to sort the PropertyDescriptor objects in this collection.

The following code example defines the sort order for the Sort method. If the PropertyDescriptorCollection contains four PropertyDescriptor objects with the names A, B, C, and D, the properties of myNewColl would be sorted in the order D, B, A, and C.

array<String^>^ temp0 = {"D","B"};
myNewColl = this->Sort( temp0 );

.NET Framework
Available since 1.1
Return to top
Show: