gpt4 book ai didi

c# - 使用指定属性按字母顺序对通用对象列表进行排序

转载 作者:太空宇宙 更新时间:2023-11-03 17:43:57 24 4
gpt4 key购买 nike

我正在编写地址簿程序。我将每个人的详细信息存储在 List<Person> 中.我需要能够按姓氏(如果有关系则使用名字)或邮政编码对这个列表进行排序。

到目前为止我有这个:

public class Person
{
public string LastName { get; set; }
public string FirstName { get; set; }
public string PostCode { get; set; }
// etc..
}

public class AddressBook
{
public List<Person> People { get; set; }

// asc: ascending or descending
// column: the property to use when sorting
// (in my case either LastName or Postcode)
public void Sort(bool asc, string column)
{
// What should I put here?
}

// etc...
}

我试过使用 ICompareIComparable接口(interface),但我就是不明白。

如何编写 Sort方法?

最佳答案

假设:

 List<Person> personList;

然后使用 Linq:

 IEnumerable<Person> orderedByLastName = personList.OrderBy(p => p.LastName)

关于c# - 使用指定属性按字母顺序对通用对象列表进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9803817/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com