

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
C# Program to get the first three elements from a list
Use the Take() method to get the first individual number of elements in C#.
Firstly, set a list and add elements −
List<string> myList = new List<string>(); myList.Add("One"); myList.Add("Two"); myList.Add("Three"); myList.Add("Four"); myList.Add("Five"); myList.Add("Six");
Now, use the Take() method to get the elements from the list. Add the number of the elements you want as an argument −
myList.Take(3)
Here is the code −
Example
using System; using System.Linq; using System.Collections.Generic; public class Demo { public static void Main() { List<string> myList = new List<string>(); myList.Add("One"); myList.Add("Two"); myList.Add("Three"); myList.Add("Four"); myList.Add("Five"); myList.Add("Six"); // first three elements var res = myList.Take(3); // displaying the first three elements foreach (string str in res) { Console.WriteLine(str); } } }
Output
One Two Three
- Related Questions & Answers
- Java Program to Get First and Last Elements from an Array List
- C# Program to display the last three elements from a list in reverse order
- Get first three letters from every string in C#
- Get first and last elements of a list in Python
- Golang Program to delete the first node from a linked list.
- Program to find three unique elements from list whose sum is closest to k Python
- Get first and last elements from Java LinkedList
- Python program to interchange first and last elements in a list
- C# program to remove duplicate elements from a List
- Python program to remove Duplicates elements from a List?
- Java program to remove duplicates elements from a List
- Python Program to Remove Palindromic Elements from a List
- How can I get elements from a Java List?
- C# program to get the List of keys from a Dictionary
- Python Program to Remove First Diagonal Elements from a Square Matrix
Advertisements