BindingList.OrderBy() - HowTo

  • Thread starter Thread starter herbert
  • Start date Start date
H

herbert

Please show me VB.NET sample code how to sort a BindingList(Of T) by various
properties of T.

eg
Dim mFriends as New BindingList(Of Friend)
mFriends.OrderBy(...) ' Property ZIP Code
mFriends.OrderBy(...) ' Property Age

thanks
herbert
 
Back
Top