How to sort a BindingList

RK62

Active member
Joined
Dec 29, 2010
Messages
33
Programming Experience
3-5
I recently converted a List collection that contains my custom objects to a BindingList collection.

The sorting seems not to be supported in a BindingList.
The original
VB.NET:
myList.Sort(New myObjectComparer)
errs that the Sort is not a member of System.ComponentModel.BindingList(of myObject)

What is the easiest way to sort a BindingList?
 
Twelve of the BindingList members relates to sorting, start with reading the documentation for those.
 
Back
Top