Skip() vs Skipwhile() in Linq

What is the difference between Skip() & SkipWhile() in Linq

Have you Googled this/looked at the documentation? Skip skips up to a given position (ie you give it a number), Skipwhile skips until the condition you give to Skipwhile stops being true (ie you give it a lambda)

1 Like