Linq To Object query
LINQ
2
Posts
2
Posters
0
Views
1
Watching
-
Hi I have a question that might sound simple, but I don't use Linq that much so... I need to write a simple query that return 'n' elements that start on index 'm' from an array. Something like extension method Take<>, but with extra argument 'StartIndex' Thanks for your time, Uros Bregar
-
Hi I have a question that might sound simple, but I don't use Linq that much so... I need to write a simple query that return 'n' elements that start on index 'm' from an array. Something like extension method Take<>, but with extra argument 'StartIndex' Thanks for your time, Uros Bregar
.Skip(m).Take(n)
Eslam Afifi