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 方法主要用于对集合中的元素进行排序,可以方便地对数据集进行排序操作。