我如何排序最大到最小的列表

时间:2019-12-13 20:19:59

标签: c#

我想按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)还是应该自己重新编写?

0 个答案:

没有答案