Tag Archives: LINQ
8 Ways to Partition Elements in a LINQ Query Using the Take and Skip Methods
LINQ – The Take and Skip methods The partitioning LINQ methods are used to fetch or skip elements from the beginning of an enumerable list while a condition yields true. The Take and Skip methods, and TakeWhile and SkipWhile methods, are complements of one another, meaning that if we concatenate the results from any of […]