SIGN UP MEMBER LOGIN:    
Blog

How to use Partition Operators in LINQ: Part 2

Posted by Dinesh Beniwal Blogs | LINQ with C# Sep 03, 2010
In this article you will see the working of last two partition operators.

As my previous article you learn about first two partition operators Take,and Skip. Now in this article we see the working of SkipWhile, and TakeWhile operators.

  • First we discuss about the SkipWhile operator it skip element in a sequence as long as the specified condition remains true and then returns the remaining elements. In this example, we will skip the all numbers from starting till we don't find the number which is divisible by 4. Read Full Article here

share this blog :
post comment