

- 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
How to insert an item in a list at a given position in C#?
To insert an item in an already created List, use the Insert() method.
Firstly, set elements −
List <int> list = new List<int>(); list.Add(989); list.Add(345); list.Add(654); list.Add(876); list.Add(234); list.Add(909);
Now, let’s say you need to insert an item at 4th position. For that, use the Insert() method −
// inserting element at 4th position list.Insert(3, 567);
Let us see the complete example −
Example
using System; using System.Collections.Generic; namespace Demo { public class Program { public static void Main(string[] args) { List < int > list = new List < int > (); list.Add(989); list.Add(345); list.Add(654); list.Add(876); list.Add(234); list.Add(909); Console.WriteLine("Count: {0}", list.Count); Console.Write("List: "); foreach(int i in list) { Console.Write(i + " "); } // inserting element at 4th position list.Insert(3, 567); Console.Write("\nList after inserting a new element: "); foreach(int i in list) { Console.Write(i + " "); } Console.WriteLine("\nCount: {0}", list.Count); } } }
- Related Questions & Answers
- How to insert an object in a list at a given position in Python?
- Insert an element at second position in a C# List
- How to insert an item into an array at a specific index in javaScript?
- How to insert an object in an ArrayList at a specific position in java?
- Delete a Linked List node at a given position in C++
- How to insert an item into a C# list by using an index?
- Delete a Doubly Linked List node at a given position in C++
- How to insert an image in a Tkinter canvas item?
- C program to insert a node at any position using double linked list
- How do I insert an item between two items in a list in Java?
- Insert a character at nth position in string in JavaScript
- How to add an item to a list in Kotlin?
- Program to insert new element into a linked list before the given position in Python
- Adding an element at a given position of the array in Javascript
- How to insert an item in ArrayList in C#?
Advertisements