要使用LINQ计算字符串数组中的单词,您可以使用以下步骤:
以下是一个示例代码:
using System;
using System.Linq;
class Program
{
static void Main()
{
string[] words = { "apple", "banana", "orange", "grape" };
var wordCount = (from word in words
select word).Count();
Console.WriteLine("The number of words in the array is: " + wordCount);
}
}
在这个示例中,我们创建了一个包含四个单词的字符串数组。然后,我们使用LINQ查询语句计算数组中的单词数量,并将结果存储在变量wordCount中。最后,我们将结果输出到控制台。
领取专属 10元无门槛券
手把手带您无忧上云