Book
項目を含むC#でIDでリストをソートするにはどうすればよいですか?
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
しかし、列だけでなく、リスト全体を並べ替えたいです。