Last Updated : 11 Jul, 2025
List.Add(T) Methodis used to add an object to the end of the List.
Properties of List:public void Add (T item);Parameter:
item: Specified object which is to be added to the end of the List of type System.Object.
Below programs illustrate how to add an element in List:
Example 1: CSharp
// C# program to add element in List<T>
using System;
using System.Collections.Generic;
class Geeks {
// Main Method
public static void Main(String[] args)
{
// Creating a List of integers
List<int> firstlist = new List<int>();
// adding elements in firstlist
for (int i = 4; i < 10; i++) {
firstlist.Add(i * 2);
}
// Displaying elements of firstlist
// by using foreach loop
foreach(int element in firstlist)
{
Console.WriteLine(element);
}
}
}
Output:
8 10 12 14 16 18Example 2: CSharp
// C# program to add element in List<T>
using System;
using System.Collections.Generic;
class Geeks {
// Main Method
public static void Main(String[] args)
{
// Creating a List of integers
List<int> firstlist = new List<int>();
// adding elements in firstlist
firstlist.Add(1);
firstlist.Add(2);
firstlist.Add(3);
firstlist.Add(4);
// Adding some duplicate
// elements in firstlist
firstlist.Add(3);
firstlist.Add(4);
// Displaying elements of firstlist
// by using foreach loop
foreach(int element in firstlist)
{
Console.WriteLine(element);
}
}
}
Output:
1 2 3 4 3 4Reference:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4