C# 中的 OrderBy 方法主要用于對(duì)集合中的元素進(jìn)行排序。它屬于 System.Linq 命名空間,并在 LINQ(Language Integrated Query,語(yǔ)言集成查詢(xún))中使用。OrderBy 方法可以對(duì)集合中的元素按照指定的屬性或表達(dá)式進(jìn)行升序或降序排序。
以下是一些關(guān)于 C# OrderBy 的用途和示例:
List<int> numbers = new List<int> { 5, 3, 8, 1, 4 };
var sortedNumbers = numbers.OrderBy(x => x);
descending
來(lái)實(shí)現(xiàn)降序排序。例如,對(duì)一個(gè)字符串列表按照字母降序進(jìn)行排序: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 方法主要用于對(duì)集合中的元素進(jìn)行排序,可以方便地對(duì)數(shù)據(jù)集進(jìn)行排序操作。