ListSortDescriptionCollection Constructors
Definition
Initializes a new instance of the ListSortDescriptionCollection class.
Overloads
ListSortDescriptionCollection() |
Initializes a new instance of the ListSortDescriptionCollection class. |
ListSortDescriptionCollection(ListSortDescription[]) |
Initializes a new instance of the ListSortDescriptionCollection class with the specified array of ListSortDescription objects. |
ListSortDescriptionCollection()
Initializes a new instance of the ListSortDescriptionCollection class.
public:
ListSortDescriptionCollection();
public ListSortDescriptionCollection ();
Public Sub New ()
Remarks
The ListSortDescriptionCollection is read-only once constructed.
ListSortDescriptionCollection(ListSortDescription[])
Initializes a new instance of the ListSortDescriptionCollection class with the specified array of ListSortDescription objects.
public:
ListSortDescriptionCollection(cli::array <System::ComponentModel::ListSortDescription ^> ^ sorts);
public ListSortDescriptionCollection (System.ComponentModel.ListSortDescription[] sorts);
new System.ComponentModel.ListSortDescriptionCollection : System.ComponentModel.ListSortDescription[] -> System.ComponentModel.ListSortDescriptionCollection
Public Sub New (sorts As ListSortDescription())
Parameters
- sorts
- ListSortDescription[]
The array of ListSortDescription objects to be contained in the collection.
Remarks
The ListSortDescriptionCollection is read-only once constructed.
Example