comparebymachine.vb

来自「vb开发的车间调度程序」· VB 代码 · 共 19 行

VB
19
字号
Public Class CompareByMachine
    Implements IComparer


    Public Function Compare(ByVal o1 As Object, ByVal o2 As Object) As Integer Implements System.Collections.IComparer.Compare

        If (o1 Is Nothing) And (o2 Is Nothing) Then Return 0

        If (o1 Is Nothing) Then Return 1
        If (o2 Is Nothing) Then Return -1

        Dim p1 As CMachine = CType(o1, CMachine)
        Dim p2 As CMachine = CType(o2, CMachine)

        Return p1.Lk - p2.Lk
       
    End Function
End Class

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?