本文整理匯總了C#中System.Linq.Queryable.OrderBy方法的典型用法代碼示例。如果您正苦於以下問題:C# Queryable.OrderBy方法的具體用法?C# Queryable.OrderBy怎麽用?C# Queryable.OrderBy使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。
在下文中一共展示了Queryable.OrderBy方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: OrderByEx1
class Pet
{
public string Name { get; set; }
public int Age { get; set; }
}
public static void OrderByEx1()
{
Pet[] pets = { new Pet { Name="Barley", Age=8 },
new Pet { Name="Boots", Age=4 },
new Pet { Name="Whiskers", Age=1 } };
// Sort the Pet objects in the array by Pet.Age.
IEnumerable<Pet> query =
pets.AsQueryable().OrderBy(pet => pet.Age);
foreach (Pet pet in query)
Console.WriteLine("{0} - {1}", pet.Name, pet.Age);
}
輸出:
Whiskers - 1 Boots - 4 Barley - 8
示例2: Main
//引入命名空間
using System;
using System.Collections.Generic;
using System.Linq;
public class MainClass {
public static void Main() {
string[] musos = { "D C", "R B", "W A" };
IEnumerable<string> query = musos.OrderBy(m => m.Split().Last());
}
}