如何在VB.Net中排序System.Collections.Generic.List?

前端之家收集整理的这篇文章主要介绍了如何在VB.Net中排序System.Collections.Generic.List?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用genre列表(m_equipmentList),它是对象的集合(Schedule_Payitem)。
如何根据子对象的属性排序列表?
Dim m_equipmentList As New List(Of Schedule_Payitem)

需要根据Schedule_Payitem的resourceid属性排序m_equipmentList。

你使用VB9吗?如果是这样,我将使用一个 lambda expression来创建一个Comparer(Of Schedule_PayItem)。否则,写一个短类来实现IComparer(Schedule_PayItem)。通过任何一个你进入List.Sort。

lambda表达式的示例(未测试):

m_equipmentList.Sort(Function(p1,p2) p1.ResourceID.CompareTo(p2.ResourceID))

对于IComparer(Of Schedule_PayItem):

Public Class PayItemResourceComparer
    Implements IComparer(Of Schedule_PayItem)
    Public Function Compare(ByVal p1 As Schedule_PayItem,_
                            ByVal p2 As Schedule_PayItem) As Integer
        Return p1.ResourceID.CompareTo(p2.ResourceID)
    End Function
End Class

...

m_equipmentList.Sort(New PayItemResourceComparer)
原文链接:https://www.f2er.com/vb/256321.html

猜你在找的VB相关文章