我有我的 g 班的清单
Public Class g
Public x as Decimal
Public y As Decimal
End Class
Dim MyQuery As List(Of g) = ...
我试着排序
Dim sorted As List(Of g) = MyQuery.OrderBy(Function(x) x.y).ThenBy(Function(x) x.x).ToList()
不幸的是,我收到以下错误
至少一个对象必须实现 IComparable。
我在这里做错了什么?当我尝试按一个属性排序时,我没有收到任何错误
Dim sorted As List(Of g) = MyQuery.OrderBy(Function(x) x.y).ToList()