如何从列表ID中执行此操作,其中列表中的10个项目依次显示2个项目?
internal List<items> test(List<long> ids)
{
//ids = 10 items
List<long> cids = new List<long>(); // max 2 items in List<long> ids
var result= classA.GetValue(cids); //max cids items 2
return result;
}
答案 0 :(得分:3)
这真的很简单吗?使用form.vars.file_hash
:
Take
我不知道为什么你需要从id中取2并将这些传递给 internal List<items> test(List<long> ids)
{
return classA.GetValue(ids.Take(2).ToList()).Take(2).ToList();
}
。
答案 1 :(得分:1)
使用Linq,
for (i = 0; i < a.length-1; i++) {
if (a[i] < a[i + 1]) {
return true;
} else {
return false;
}
}
这可能是最简单的。除非我严重误解了这个问题,否则不多补充......