我想按List<Clothing> AllClothing
类中的Sold
值对这Clothing
个最大到最小的列表进行排序。
简化的Clothing
类:()
public class Clothing
{
private int productID;
private string productName;
private int sold;
public int Sold { get => sold; set => sold = value; }
}
我可以像代码一样使用Array.Sort(AllClothings)
还是应该自己重新编写?