在C#中,OrderByDescending
方法用于對集合中的元素進行降序排序。它可以應用于任何實現了IComparable
接口的類型,這意味著你可以使用它來排序數字、字符串、自定義對象等,只要這些類型定義了適當的比較邏輯。
以下是一些使用OrderByDescending
的示例:
List<int> numbers = new List<int> { 3, 1, 4, 1, 5, 9 };
numbers = numbers.OrderByDescending(n => n).ToList();
// 現在numbers包含: 9, 5, 4, 3, 1, 1
List<string> words = new List<string> { "apple", "banana", "cherry", "date" };
words = words.OrderByDescending(w => w).ToList();
// 現在words包含: "date", "cherry", "banana", "apple"
Person
的類):public class Person
{
public string Name { get; set; }
public int Age { get; set; }
}
List<Person> people = new List<Person>
{
new Person { Name = "Alice", Age = 30 },
new Person { Name = "Bob", Age = 25 },
new Person { Name = "Charlie", Age = 35 }
};
people = people.OrderByDescending(p => p.Age).ToList();
// 現在people包含: Charlie (Age = 35), Alice (Age = 30), Bob (Age = 25)
在這些示例中,OrderByDescending
方法根據提供的lambda表達式(n => n
、w => w
和p => p.Age
)對元素進行排序。對于自定義對象,你需要提供一個屬性或字段作為排序依據。