How can I sort just part of a list using vb .net?
Posted
by Eyal
on Stack Overflow
See other posts from Stack Overflow
or by Eyal
Published on 2010-03-08T06:27:55Z
Indexed on
2010/03/08
6:36 UTC
Read the original article
Hit count: 359
In VB .Net, the Generics Lists have a sort function that accepts IComparer or Comparison. I'd like to sort just part of list. Hopefully I can specify the start index, count of elements to sort, and a lambda function. It looks like you can only use lambda functions to do this if you're sorting the entire list. Is that right or did I miss something?
© Stack Overflow or respective owner