Understanding Arrays and Lists in C#: A Comprehensive Guide with Examples

Introduction
In C#, arrays and lists are fundamental data structures that allow you to store and manage collections of elements efficiently. While both serve similar purposes, they have distinct differences in terms of flexibility, performance, and functionality. This blog post will explore arrays and lists in C#, providing detailed explanations and valid examples to help you understand their usage and differences.

Are you looking for Live Training in C#?
The upcoming batch for C#.NET is sceduled.
Book Your Seat Now.
Arrays in C#
What is an Array?
An array is a collection of elements of the same type stored in contiguous memory locations. Arrays have a fixed size, meaning the number of elements must be specified when the array is created and cannot be changed later.
Declaring and Initializing Arrays
Example
// Declaration and initialization
int[] numbers = new int[5];
// Assigning values
numbers[0] = 10;
numbers[1] = 20;
numbers[2] = 30;
numbers[3] = 40;
numbers[4] = 50;
// Declaration and initialization with values
int[] moreNumbers = { 60, 70, 80, 90, 100 };
Accessing Array Elements
Example
int firstNumber = numbers[0]; // Accessing the first element
int lastNumber = moreNumbers[4]; // Accessing the last element
Console.WriteLine("First number: " + firstNumber);
Console.WriteLine("Last number: " + lastNumber);
Iterating Over Arrays
Example
// Using a for loop
for (int i = 0; i < numbers.Length; i++)
{
Console.WriteLine("Element at index " + i + ": " + numbers[i]);
}
// Using a foreach loop
foreach (int number in moreNumbers)
{
Console.WriteLine("Number: " + number);
}

Are you looking for Live Training in C#?
The upcoming batch for C#.NET is sceduled.
Book Your Seat Now.
Lists in C#
What is a List?
A list is a collection of elements that can dynamically grow or shrink in size. Unlike arrays, lists are part of the System.Collections.Generic
namespace and provide more flexibility in terms of adding, removing, and managing elements.
Declaring and Initializing Lists
Example
using System.Collections.Generic;
// Declaration and initialization
List<int> numbersList = new List<int>();
// Adding values
numbersList.Add(10);
numbersList.Add(20);
numbersList.Add(30);
numbersList.Add(40);
numbersList.Add(50);
// Declaration and initialization with values
List<int> moreNumbersList = new List<int> { 60, 70, 80, 90, 100 };
Accessing List Elements
Example
int firstNumberList = numbersList[0]; // Accessing the first element
int lastNumberList = moreNumbersList[4]; // Accessing the last element
Console.WriteLine("First number in list: " + firstNumberList);
Console.WriteLine("Last number in list: " + lastNumberList);
Iterating Over Lists
Example
// Using a for loop
for (int i = 0; i < numbersList.Count; i++)
{
Console.WriteLine("Element at index " + i + ": " + numbersList[i]);
}
// Using a foreach loop
foreach (int number in moreNumbersList)
{
Console.WriteLine("Number in list: " + number);
}
Adding and Removing Elements
Example
// Adding elements
numbersList.Add(60);
numbersList.Insert(2, 25); // Inserting 25 at index 2
// Removing elements
numbersList.Remove(20); // Removing the first occurrence of 20
numbersList.RemoveAt(1); // Removing the element at index 1
// Displaying updated list
foreach (int number in numbersList)
{
Console.WriteLine("Updated list number: " + number);
}

Are you looking for Live Training in C#?
The upcoming batch for C#.NET is sceduled.
Book Your Seat Now.
Differences Between Arrays and Lists
Flexibility
- Arrays: Fixed size, cannot be resized after initialization.
- Lists: Dynamic size, can grow and shrink as needed.
Performance
- Arrays: Better performance for fixed-size collections due to contiguous memory allocation.
- Lists: Slightly slower performance due to dynamic resizing and additional overhead, but more flexible.
Functionality
- Arrays: Limited functionality, mainly used for simple collections.
- Lists: Rich functionality with methods for adding, removing, and searching elements.
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// Arrays
int[] numbers = new int[5] { 10, 20, 30, 40, 50 };
int[] moreNumbers = { 60, 70, 80, 90, 100 };
Console.WriteLine("Array elements:");
foreach (int number in numbers)
{
Console.WriteLine(number);
}
Console.WriteLine("More array elements:");
foreach (int number in moreNumbers)
{
Console.WriteLine(number);
}
// Lists
List<int> numbersList = new List<int> { 10, 20, 30, 40, 50 };
List<int> moreNumbersList = new List<int> { 60, 70, 80, 90, 100 };
numbersList.Add(60);
numbersList.Insert(2, 25);
numbersList.Remove(20);
numbersList.RemoveAt(1);
Console.WriteLine("List elements:");
foreach (int number in numbersList)
{
Console.WriteLine(number);
}
Console.WriteLine("More list elements:");
foreach (int number in moreNumbersList)
{
Console.WriteLine(number);
}
}
}
By following this guide, you should now have a clear understanding of arrays and lists in C#, their differences, and how to use them effectively in your projects.
Conclusion
Arrays and lists are both essential data structures in C#, each with its own strengths and use cases. Arrays are suitable for fixed-size collections where performance is critical, while lists provide flexibility and additional functionality for managing dynamic collections. By understanding the differences and appropriate use cases for arrays and lists, you can make informed decisions and write more efficient and effective C# code.

Are you looking for Live Training in C#?
The upcoming batch for C#.NET is sceduled.
Book Your Seat Now.