How sort a System.Collections.Generic.List in VB.Net ?
Posted
by Nakul Chaudhary
on Stack Overflow
See other posts from Stack Overflow
or by Nakul Chaudhary
Published on 2009-01-13T11:41:08Z
Indexed on
2010/03/24
2:43 UTC
Read the original article
Hit count: 450
I using a genric list(m_equipmentList ) which is collection of objects (Schedule_Payitem).
How can sort list according to a proerty of child object ?
Dim m_equipmentList As New List(Of Schedule_Payitem)
Need to sort m_equipmentList on basis of resourceid property of Schedule_Payitem.
© Stack Overflow or respective owner