ListSortDescriptionCollection Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
Applies to
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);
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