CAML 中是否有 LINQ 等效的跳过功能。
我想跳过列表中的前 4 个项目并显示其余项目。
谢谢
看这个例子:
C#版本
// this is an extension method type ofLINQ
int[] hello = new int[]{1,2,3,4,5,6};
var world = hello.Skip(4);
foreach (var n in world)
{
Console.WriteLine(n);
}
它会显示
5
6
顺便说一句,您使用的是什么语言?C#
还是VB
?这是为了C#
这是VB版本
Dim numbers() = {1,2,3,4,5,6}
Dim allButFirst4Numbers = From n In numbers Skip 4
For Each n In allButFirst4Numbers
Console.WriteLine(n)
Next
它会显示
5
6