C# 中的 OrderBy 方法主要用于對集合中的元素進行排序。它屬于 System.Linq 命名空間,并在 LINQ(Language Integrated Query,語言集成查詢)中使用。OrderBy 方法可以對集合中的元素按照指定的屬性或表達式進行升序或降序排序。
以下是一些關于 C# OrderBy 的用途和示例:
List<int> numbers = new List<int> { 5, 3, 8, 1, 4 };
var sortedNumbers = numbers.OrderBy(x => x);
descending
來實現降序排序。例如,對一個字符串列表按照字母降序進行排序:List<string> words = new List<string> { "apple", "banana", "orange", "grape" };
var sortedWords = words.OrderByDescending(x => x);
class Student
{
public int Age { get; set; }
public string Name { get; set; }
}
List<Student> students = new List<Student>
{
new Student { Age = 20, Name = "Alice" },
new Student { Age = 22, Name = "Bob" },
new Student { Age = 20, Name = "Charlie" }
};
var sortedStudents = students.OrderBy(x => x.Age).ThenBy(x => x.Name);
總之,C# 中的 OrderBy 方法主要用于對集合中的元素進行排序,可以方便地對數據集進行排序操作。