0
我有這個類:如何訂購清單中的物品並刪除基於物業的重複物品?
public class User
{
public long Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Username { get; set; }
public int Contributions { get; set; }
}
我List<User>
可以包含具有相同Id
但不同Contributions
值多個項目。
我想擁有基於Id
的不同值,但是Id
的值最高爲Contributions
。我怎樣才能做到這一點?謝謝。
我試過,但它只是我想要的一部分:
list.OrderByDescending(x => x.Contributions);
謝謝@qxg。 – Blendester