當前位置: 首頁>>代碼示例>>C#>>正文


C# Queryable.Aggregate方法代碼示例

本文整理匯總了C#中System.Linq.Queryable.Aggregate方法的典型用法代碼示例。如果您正苦於以下問題:C# Queryable.Aggregate方法的具體用法?C# Queryable.Aggregate怎麽用?C# Queryable.Aggregate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。


在下文中一共展示了Queryable.Aggregate方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1:

string[] fruits = { "apple", "mango", "orange", "passionfruit", "grape" };

// Determine whether any string in the array is longer than "banana".
string longestName =
    fruits.AsQueryable().Aggregate(
    "banana",
    (longest, next) => next.Length > longest.Length ? next : longest,
    // Return the final result as an uppercase string.
    fruit => fruit.ToUpper()
    );

Console.WriteLine(
    "The fruit with the longest name is {0}.",
    longestName);
開發者ID:.NET開發者,項目名稱:System.Linq,代碼行數:14,代碼來源:Queryable.Aggregate

輸出:

The fruit with the longest name is PASSIONFRUIT.

示例2:

int[] ints = { 4, 8, 8, 3, 9, 0, 7, 8, 2 };

// Count the even numbers in the array, using a seed value of 0.
int numEven =
    ints.AsQueryable().Aggregate(
    0,
    (total, next) => next % 2 == 0 ? total + 1 : total
    );

Console.WriteLine("The number of even integers is: {0}", numEven);
開發者ID:.NET開發者,項目名稱:System.Linq,代碼行數:10,代碼來源:Queryable.Aggregate

輸出:

The number of even integers is: 6

示例3:

string sentence = "the quick brown fox jumps over the lazy dog";

// Split the string into individual words.
string[] words = sentence.Split(' ');

// Use Aggregate() to prepend each word to the beginning of the 
// new sentence to reverse the word order.
string reversed =
    words.AsQueryable().Aggregate(
    (workingSentence, next) => next + " " + workingSentence
    );

Console.WriteLine(reversed);
開發者ID:.NET開發者,項目名稱:System.Linq,代碼行數:13,代碼來源:Queryable.Aggregate

輸出:

dog lazy the over jumps fox brown quick the


注:本文中的System.Linq.Queryable.Aggregate方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。