Querying Data from List Using Linq by Specifying Start Index

Introduction

By using Skip key work it is possible to query data from linq by specify the start index, see the example given below:

Example

List<Entity> abc = AllCustomers.Where(AC=> AC.Type == "O" && AC.Status == "ACTIVE").Skip(startIndex).ToList();