我有一个自定义类型的列表。自定义类型是
public class PossibleMatch
{
public PossibleMatch()
{
StoreIds = new List<long>();
OrderLineIds = new List<long>();
}
public IList<long> StoreIds { get; set; }
public IList<long> OrderLineIds { get; set; }
}
我必须以这样一种方式对列表进行排序,以使商店数量较少且订单行数量较多的项目应位于顶部。
提前致谢。