Skip function in lambda C#
August 13, 2022 2022-08-13 4:28Skip function in lambda C#
- Create a console application and create a customer class in it.
public class Customer
{
public int CustomerCode { get; set; }
public string CustomerName { get; set; }
public int TotalOrder { get; set; }
}
2. Create a list of customers.
var customerList = new List()
{
new Customer{CustomerCode=101,CustomerName = "Steve", TotalOrder = 2},
new Customer{CustomerCode=102,CustomerName = "Mark", TotalOrder = 4},
new Customer{CustomerCode=103,CustomerName = "Bill", TotalOrder = 7},
new Customer{CustomerCode=104,CustomerName = "Dell",TotalOrder = 6}
};
3. Skip top 2 records from the customer list by using skip function in lambda.
var result = customerList.Skip(2).ToList();
foreach (var a in result)
{
Console.WriteLine(a.CustomerCode.ToString() + '-' + a.CustomerName.ToString());
}

Please comment and share if you like this post and tell us about how we can enhance our posts. Thanks.
Subhajit
This is Subhajit Sinha, with more than 8 years of experience as a full stack developer in renowned Multinational Companies, here in this portal as an online tutor I will guide you personally to level up your programming skills and also will coach you to augment your career and salary as well.
Search
Popular posts
