C# Queryable LongCount 方法
使用 Linq LongCount 方法获取元素计数。
下面是我们的字符串数组 −
string[] emp = { "Jack", "Mark"};
现在,使用 LongCount() 方法。
emp.AsQueryable().LongCount();
以下是完整代码。
示例
using System; using System.Collections.Generic; using System.Linq; class Demo { static void Main() { string[] emp = { "Jack", "Mark"}; long res = emp.AsQueryable().LongCount(); Console.WriteLine("{0} employees in the Department", res); } }
输出
2 employees in the Department