---
title: "Use  Skip Operators in Linq."  
description: "Use  Skip Operators in Linq."  
author: "Norman Reedus"  
published: 2016-03-21  
updated: 2016-03-21  
canonical: https://www.mindstick.com/forum/34072/use-skip-operators-in-linq  
category: "linq"  
tags: ["linq"]  
reading_time: 2 minutes  

---

# Use  Skip Operators in Linq.

We want to use [Skip](https://www.mindstick.com/forum/159872/what-is-the-skip-and-take-combination-in-linq) [Operators](https://www.mindstick.com/articles/716/php-operators) in [Linq query](https://www.mindstick.com/forum/33908/how-to-select-and-retrieve-data-using-linq-query-in-entity-framework). How to use this please help me.

## Replies

### Reply by Anonymous User

Skips elements up to a specified position starting from the first element in a sequence.

```
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Prototype{    class Example    {        static void Main()        {            IList<employee> List = new List<employee>() {             new employee() { id = 1, empname = "Rohit", age = 18 } ,            new employee() { id = 2, empname = "Manoj",  age = 15 } ,            new employee() { id = 3, empname = "Anupam",  age = 25 } ,            new employee() { id = 4, empname = "Shiv" , age = 20 } ,            new employee() { id = 5, empname = "Sohan" , age = 19 },             new employee() { id = 6, empname = "Mohan" , age = 18 }               };            var skipResult = List.Skip(3);            foreach (employee emp in skipResult)                Console.WriteLine("Id:" + emp.id + ", Name:" + emp.empname + ", Age:" + emp.age);            Console.ReadLine();        }    }    class employee    {        public int id { get; set; }        public string empname { get; set; }        public int age { get; set; }    }}
```

![Use  Skip Operators in Linq.](https://www.mindstick.com/mindstickforums/b04c54d0-e9da-4791-bef7-df2075b7eb05/images/f7481fb7-9a75-4fbd-b37a-7832e8db8e85.png)


---

Original Source: https://www.mindstick.com/forum/34072/use-skip-operators-in-linq

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
