如何在 c# 中按 id 对包含Book
项目的列表进行排序?
static List<Book> sorted = new List<Book>();
public string title { get; set; }
public string summary { get; set; }
public int id { get; set; }
public int numberofauthors { get; set; }
public string author {get; set;}
但我想对整个列表进行排序,而不仅仅是sorted[k].id
列。