获取var中的数据行

ash*_*raz 0 c# linq asp.net generics collections

var a=from b in dc.Table1s select b;
int High=60,Low=50,c=0;    
foreach(var item in a)
{
   if(c>Low && c<High)
   {
      //do something
   }

   c++;
}
Run Code Online (Sandbox Code Playgroud)

如果你有10,000行变量.a如何在不改变c可以导航的总数的情况下获得第50行到第60行的内容

SLa*_*aks 5

你可能想要 dc.Table1s.Skip(50).Take(10)