C# - Loop Over Arrays

Loop Over Arrays in C#

Arrays are one of the fundamental data structures in C#, allowing storage of multiple elements of the same type in a contiguous memory block. Looping over arrays is essential to access or manipulate each element efficiently. C# provides various looping constructs to iterate through arrays, each with unique advantages and typical use cases.

Table of Contents

  • Introduction to Arrays and Looping
  • Array Basics in C#
  • The For Loop
  • The Foreach Loop
  • While and Do-While Loops
  • Nested Loops for Multidimensional Arrays
  • Common Looping Patterns
  • Performance Considerations
  • Advanced Looping Techniques
  • Real World Examples

Introduction to Arrays and Looping

An array in C# is a fixed-size, zero-based indexed collection of elements of the same type. Once declared, the size of an array cannot change. Accessing each element individually requires iterating or "looping" over it.

Looping constructs help automate repetitive access and modification of array elements. Understanding different loop types and their applicability improves code clarity, efficiency, and maintainability.

Why Loop Over Arrays?

  • Read or process each element.
  • Search for specific elements.
  • Modify array values based on logic.
  • Aggregate data like sums or averages.
  • Print or display array contents.

Array Basics in C#

Before diving into looping, let's review some basics about arrays.

Declaring and Initializing Arrays

// Declare an integer array with 5 elements
int[] numbers = new int[5];

// Initialize with values
int[] primes = { 2, 3, 5, 7, 11 };

// Declare and initialize with new keyword
string[] fruits = new string[] { "apple", "banana", "cherry" };

Accessing Array Elements

Array elements are accessed via zero-based indices:

int firstPrime = primes[0]; // 2
string firstFruit = fruits[0]; // "apple"

Properties of Arrays

  • Length: Gets the total number of elements.
  • Rank: Gets the number of dimensions (useful for multidimensional arrays).
int length = primes.Length; // 5

The For Loop

The for loop is the most common loop used to iterate arrays because it provides direct control over the index.

Basic Syntax

for (int i = 0; i < array.Length; i++)
{
    // Access element at index i
    var element = array[i];
    // Process element
}

Example: Loop Over Integer Array

int[] numbers = { 1, 2, 3, 4, 5 };

for (int i = 0; i < numbers.Length; i++)
{
    Console.WriteLine($"Element at index {i} is {numbers[i]}");
}

Advantages of For Loop

  • Full control over the index variable.
  • Ability to manipulate index (increment, decrement, jump steps).
  • Ideal for arrays where index position matters.

Modifying Array Elements Using For Loop

for (int i = 0; i < numbers.Length; i++)
{
    numbers[i] *= 2;  // Double each element
}

Common Variations

  • Iterating backwards:
  • for (int i = numbers.Length - 1; i >= 0; i--)
    {
        Console.WriteLine(numbers[i]);
    }
  • Skipping elements:
  • for (int i = 0; i < numbers.Length; i += 2)
    {
        Console.WriteLine(numbers[i]);
    }

The Foreach Loop

The foreach loop is specifically designed for iterating over collections like arrays, lists, and other enumerable types.

Basic Syntax

foreach (var element in array)
{
    // Use element directly
}

Example: Foreach Loop Over String Array

string[] fruits = { "apple", "banana", "cherry" };

foreach (var fruit in fruits)
{
    Console.WriteLine(fruit);
}

Advantages of Foreach

  • More readable and less error-prone since no index management.
  • Automatically iterates over all elements.
  • Works with any IEnumerable, not just arrays.

Limitations of Foreach

  • Cannot modify the elements of the array directly (read-only access to elements).
  • No access to element index unless you maintain a separate counter.

Using Foreach with Index Tracking

int index = 0;
foreach (var fruit in fruits)
{
    Console.WriteLine($"Element {index}: {fruit}");
    index++;
}

While and Do-While Loops

While loops are less commonly used for array iteration but can be useful in certain scenarios.

While Loop Syntax

int i = 0;
while (i < array.Length)
{
    var element = array[i];
    i++;
}

Example: While Loop Over Array

int[] numbers = { 10, 20, 30 };

int i = 0;
while (i < numbers.Length)
{
    Console.WriteLine(numbers[i]);
    i++;
}

Do-While Loop Syntax

int i = 0;
do
{
    var element = array[i];
    i++;
} while (i < array.Length);

Use Cases for While and Do-While

  • When looping depends on an external condition.
  • Do-While guarantees at least one iteration.
  • Less frequently used for simple array iteration compared to for or foreach.

Nested Loops for Multidimensional Arrays

C# supports multidimensional arrays (rectangular arrays) and jagged arrays (arrays of arrays). Looping over these requires nested loops.

Rectangular (Multidimensional) Arrays

int[,] matrix = {
    {1, 2, 3},
    {4, 5, 6},
    {7, 8, 9}
};

for (int row = 0; row < matrix.GetLength(0); row++)
{
    for (int col = 0; col < matrix.GetLength(1); col++)
    {
        Console.Write(matrix[row, col] + " ");
    }
    Console.WriteLine();
}

Jagged Arrays (Array of Arrays)

int[][] jagged = new int[][]
{
    new int[] {1, 2, 3},
    new int[] {4, 5},
    new int[] {6, 7, 8, 9}
};

for (int i = 0; i < jagged.Length; i++)
{
    for (int j = 0; j < jagged[i].Length; j++)
    {
        Console.Write(jagged[i][j] + " ");
    }
    Console.WriteLine();
}

Common Looping Patterns

Searching in Arrays

int[] numbers = { 10, 20, 30, 40 };
int target = 30;
int index = -1;

for (int i = 0; i < numbers.Length; i++)
{
    if (numbers[i] == target)
    {
        index = i;
        break; // Stop after finding first occurrence
    }
}
Console.WriteLine(index); // Output: 2

Summing Array Elements

int[] numbers = { 1, 2, 3, 4, 5 };
int sum = 0;

foreach (var num in numbers)
{
    sum += num;
}
Console.WriteLine($"Sum: {sum}"); // 15

Filtering Elements

int[] numbers = { 1, 2, 3, 4, 5, 6 };
List evens = new List();

foreach (var num in numbers)
{
    if (num % 2 == 0)
    {
        evens.Add(num);
    }
}
Console.WriteLine(string.Join(", ", evens)); // 2, 4, 6

Transforming Arrays

int[] numbers = { 1, 2, 3 };
int[] doubled = new int[numbers.Length];

for (int i = 0; i < numbers.Length; i++)
{
    doubled[i] = numbers[i] * 2;
}

Console.WriteLine(string.Join(", ", doubled)); // 2, 4, 6

Example: Caching Length in For Loop

int[] array = { 1, 2, 3, 4, 5 };
int len = array.Length;

for (int i = 0; i < len; i++)
{
    Console.WriteLine(array[i]);
}

Advanced Looping Techniques

Using LINQ to Loop Over Arrays

While LINQ is more declarative, it internally loops over arrays.

int[] numbers = { 1, 2, 3, 4, 5 };
var evenNumbers = numbers.Where(n => n % 2 == 0);

foreach (var n in evenNumbers)
{
    Console.WriteLine(n);
}

Parallel Looping with Parallel.For

For CPU-intensive operations on large arrays, parallel loops can improve performance by utilizing multiple threads.

int[] numbers = new int[1000];

// Initialize array
for (int i = 0; i < numbers.Length; i++)
{
    numbers[i] = i;
}

// Parallel processing
System.Threading.Tasks.Parallel.For(0, numbers.Length, i =>
{
    numbers[i] = numbers[i] * numbers[i];  // square each element
});

Span<T> and Memory<T> for Array Slicing

C# 7.2+ introduced Span<T>, a memory-safe and efficient way to create slices (sub-arrays) without copying data. You can loop over spans like arrays.

int[] numbers = { 1, 2, 3, 4, 5 };
Span<int> slice = numbers.AsSpan(1, 3);  // Slice from index 1, length 3

foreach (var n in slice)
{
    Console.WriteLine(n); // Outputs 2, 3, 4
}

Real World Examples

Example 1: Printing User Scores

int[] scores = { 85, 92, 78, 90, 100 };

for (int i = 0; i < scores.Length; i++)
{
    Console.WriteLine($"User {i + 1}: Score = {scores[i]}");
}

Example 2: Finding Max Value in Array

int[] values = { 5, 12, 9, 21, 7 };
int max = values[0];

foreach (var val in values)
{
    if (val > max)
        max = val;
}
Console.WriteLine($"Maximum value: {max}");

Example 3: Counting Occurrences

string[] words = { "apple", "banana", "apple", "orange", "banana", "apple" };
Dictionary<string, int> counts = new Dictionary<string, int>();

foreach (var word in words)
{
    if (counts.ContainsKey(word))
        counts[word]++;
    else
        counts[word] = 1;
}

foreach (var pair in counts)
{
    Console.WriteLine($"{pair.Key}: {pair.Value}");
}

Looping over arrays in C# is a foundational skill for any developer. Understanding the available looping constructs and their best use cases helps you write efficient, clear, and maintainable code.

Key points covered:

  • Arrays store multiple elements; loops help access and modify them efficiently.
  • The for loop provides index control and is suited for modifying arrays.
  • The foreach loop offers readability and ease of use but is read-only for arrays.
  • While and do-while loops can also iterate but are less common for arrays.
  • Nested loops are essential for multidimensional and jagged arrays.
  • Looping patterns include searching, summing, filtering, and transforming arrays.
  • Performance can be improved by caching array lengths and considering parallel loops for large data.
  • Advanced techniques use LINQ, parallel loops, and Span<T> for efficient slicing.

Mastering these techniques allows you to work confidently with arrays in any C# application, from simple scripts to complex, high-performance systems.

logo

C#

Beginner 5 Hours

Loop Over Arrays in C#

Arrays are one of the fundamental data structures in C#, allowing storage of multiple elements of the same type in a contiguous memory block. Looping over arrays is essential to access or manipulate each element efficiently. C# provides various looping constructs to iterate through arrays, each with unique advantages and typical use cases.

Table of Contents

  • Introduction to Arrays and Looping
  • Array Basics in C#
  • The For Loop
  • The Foreach Loop
  • While and Do-While Loops
  • Nested Loops for Multidimensional Arrays
  • Common Looping Patterns
  • Performance Considerations
  • Advanced Looping Techniques
  • Real World Examples

Introduction to Arrays and Looping

An array in C# is a fixed-size, zero-based indexed collection of elements of the same type. Once declared, the size of an array cannot change. Accessing each element individually requires iterating or "looping" over it.

Looping constructs help automate repetitive access and modification of array elements. Understanding different loop types and their applicability improves code clarity, efficiency, and maintainability.

Why Loop Over Arrays?

  • Read or process each element.
  • Search for specific elements.
  • Modify array values based on logic.
  • Aggregate data like sums or averages.
  • Print or display array contents.

Array Basics in C#

Before diving into looping, let's review some basics about arrays.

Declaring and Initializing Arrays

// Declare an integer array with 5 elements int[] numbers = new int[5]; // Initialize with values int[] primes = { 2, 3, 5, 7, 11 }; // Declare and initialize with new keyword string[] fruits = new string[] { "apple", "banana", "cherry" };

Accessing Array Elements

Array elements are accessed via zero-based indices:

int firstPrime = primes[0]; // 2 string firstFruit = fruits[0]; // "apple"

Properties of Arrays

  • Length: Gets the total number of elements.
  • Rank: Gets the number of dimensions (useful for multidimensional arrays).
int length = primes.Length; // 5

The For Loop

The for loop is the most common loop used to iterate arrays because it provides direct control over the index.

Basic Syntax

for (int i = 0; i < array.Length; i++) { // Access element at index i var element = array[i]; // Process element }

Example: Loop Over Integer Array

int[] numbers = { 1, 2, 3, 4, 5 }; for (int i = 0; i < numbers.Length; i++) { Console.WriteLine($"Element at index {i} is {numbers[i]}"); }

Advantages of For Loop

  • Full control over the index variable.
  • Ability to manipulate index (increment, decrement, jump steps).
  • Ideal for arrays where index position matters.

Modifying Array Elements Using For Loop

for (int i = 0; i < numbers.Length; i++) { numbers[i] *= 2; // Double each element }

Common Variations

  • Iterating backwards:
for (int i = numbers.Length - 1; i >= 0; i--) { Console.WriteLine(numbers[i]); }
  • Skipping elements:
  • for (int i = 0; i < numbers.Length; i += 2) { Console.WriteLine(numbers[i]); }

    The Foreach Loop

    The foreach loop is specifically designed for iterating over collections like arrays, lists, and other enumerable types.

    Basic Syntax

    foreach (var element in array) { // Use element directly }

    Example: Foreach Loop Over String Array

    string[] fruits = { "apple", "banana", "cherry" }; foreach (var fruit in fruits) { Console.WriteLine(fruit); }

    Advantages of Foreach

    • More readable and less error-prone since no index management.
    • Automatically iterates over all elements.
    • Works with any IEnumerable, not just arrays.

    Limitations of Foreach

    • Cannot modify the elements of the array directly (read-only access to elements).
    • No access to element index unless you maintain a separate counter.

    Using Foreach with Index Tracking

    int index = 0; foreach (var fruit in fruits) { Console.WriteLine($"Element {index}: {fruit}"); index++; }

    While and Do-While Loops

    While loops are less commonly used for array iteration but can be useful in certain scenarios.

    While Loop Syntax

    int i = 0; while (i < array.Length) { var element = array[i]; i++; }

    Example: While Loop Over Array

    int[] numbers = { 10, 20, 30 }; int i = 0; while (i < numbers.Length) { Console.WriteLine(numbers[i]); i++; }

    Do-While Loop Syntax

    int i = 0; do { var element = array[i]; i++; } while (i < array.Length);

    Use Cases for While and Do-While

    • When looping depends on an external condition.
    • Do-While guarantees at least one iteration.
    • Less frequently used for simple array iteration compared to for or foreach.

    Nested Loops for Multidimensional Arrays

    C# supports multidimensional arrays (rectangular arrays) and jagged arrays (arrays of arrays). Looping over these requires nested loops.

    Rectangular (Multidimensional) Arrays

    int[,] matrix = { {1, 2, 3}, {4, 5, 6}, {7, 8, 9} }; for (int row = 0; row < matrix.GetLength(0); row++) { for (int col = 0; col < matrix.GetLength(1); col++) { Console.Write(matrix[row, col] + " "); } Console.WriteLine(); }

    Jagged Arrays (Array of Arrays)

    int[][] jagged = new int[][] { new int[] {1, 2, 3}, new int[] {4, 5}, new int[] {6, 7, 8, 9} }; for (int i = 0; i < jagged.Length; i++) { for (int j = 0; j < jagged[i].Length; j++) { Console.Write(jagged[i][j] + " "); } Console.WriteLine(); }

    Common Looping Patterns

    Searching in Arrays

    int[] numbers = { 10, 20, 30, 40 }; int target = 30; int index = -1; for (int i = 0; i < numbers.Length; i++) { if (numbers[i] == target) { index = i; break; // Stop after finding first occurrence } } Console.WriteLine(index); // Output: 2

    Summing Array Elements

    int[] numbers = { 1, 2, 3, 4, 5 }; int sum = 0; foreach (var num in numbers) { sum += num; } Console.WriteLine($"Sum: {sum}"); // 15

    Filtering Elements

    int[] numbers = { 1, 2, 3, 4, 5, 6 }; List evens = new List(); foreach (var num in numbers) { if (num % 2 == 0) { evens.Add(num); } } Console.WriteLine(string.Join(", ", evens)); // 2, 4, 6

    Transforming Arrays

    int[] numbers = { 1, 2, 3 }; int[] doubled = new int[numbers.Length]; for (int i = 0; i < numbers.Length; i++) { doubled[i] = numbers[i] * 2; } Console.WriteLine(string.Join(", ", doubled)); // 2, 4, 6

    Example: Caching Length in For Loop

    int[] array = { 1, 2, 3, 4, 5 }; int len = array.Length; for (int i = 0; i < len; i++) { Console.WriteLine(array[i]); }

    Advanced Looping Techniques

    Using LINQ to Loop Over Arrays

    While LINQ is more declarative, it internally loops over arrays.

    int[] numbers = { 1, 2, 3, 4, 5 }; var evenNumbers = numbers.Where(n => n % 2 == 0); foreach (var n in evenNumbers) { Console.WriteLine(n); }

    Parallel Looping with Parallel.For

    For CPU-intensive operations on large arrays, parallel loops can improve performance by utilizing multiple threads.

    int[] numbers = new int[1000]; // Initialize array for (int i = 0; i < numbers.Length; i++) { numbers[i] = i; } // Parallel processing System.Threading.Tasks.Parallel.For(0, numbers.Length, i => { numbers[i] = numbers[i] * numbers[i]; // square each element });

    Span<T> and Memory<T> for Array Slicing

    C# 7.2+ introduced Span<T>, a memory-safe and efficient way to create slices (sub-arrays) without copying data. You can loop over spans like arrays.

    int[] numbers = { 1, 2, 3, 4, 5 }; Span<int> slice = numbers.AsSpan(1, 3); // Slice from index 1, length 3 foreach (var n in slice) { Console.WriteLine(n); // Outputs 2, 3, 4 }

    Real World Examples

    Example 1: Printing User Scores

    int[] scores = { 85, 92, 78, 90, 100 }; for (int i = 0; i < scores.Length; i++) { Console.WriteLine($"User {i + 1}: Score = {scores[i]}"); }

    Example 2: Finding Max Value in Array

    int[] values = { 5, 12, 9, 21, 7 }; int max = values[0]; foreach (var val in values) { if (val > max) max = val; } Console.WriteLine($"Maximum value: {max}");

    Example 3: Counting Occurrences

    string[] words = { "apple", "banana", "apple", "orange", "banana", "apple" }; Dictionary<string, int> counts = new Dictionary<string, int>(); foreach (var word in words) { if (counts.ContainsKey(word)) counts[word]++; else counts[word] = 1; } foreach (var pair in counts) { Console.WriteLine($"{pair.Key}: {pair.Value}"); }

    Looping over arrays in C# is a foundational skill for any developer. Understanding the available looping constructs and their best use cases helps you write efficient, clear, and maintainable code.

    Key points covered:

    • Arrays store multiple elements; loops help access and modify them efficiently.
    • The for loop provides index control and is suited for modifying arrays.
    • The foreach loop offers readability and ease of use but is read-only for arrays.
    • While and do-while loops can also iterate but are less common for arrays.
    • Nested loops are essential for multidimensional and jagged arrays.
    • Looping patterns include searching, summing, filtering, and transforming arrays.
    • Performance can be improved by caching array lengths and considering parallel loops for large data.
    • Advanced techniques use LINQ, parallel loops, and Span<T> for efficient slicing.

    Mastering these techniques allows you to work confidently with arrays in any C# application, from simple scripts to complex, high-performance systems.

    Related Tutorials

    Frequently Asked Questions for C#

    C# is much easier to learn than C++. C# is a simpler, high-level-of-abstraction language, while C++ is a low-level language with a higher learning curve.

    C# outshines Python when it comes to runtime performance. As a compiled language, C# code is converted to machine code, which can be executed more efficiently by the processor. This results in faster execution times and better performance, especially in resource-intensive tasks.

    Python and JavaScript programmers also earn high salaries, ranking #3 and #4 in compensation. 
    C# is the highest-paid programming language but has less demand than Python, JavaScript, and Java.

    No. Microsoft has invested substantially in ensuring that C# is the dominant language today, spending two billion dollars on marketing and attempting to convince developers to embrace this new platform, which is also based on the.NET foundation.

    C# is primarily used on the Windows .NET framework, although it can be applied to an open source platform. This highly versatile programming language is an object-oriented programming language (OOP) and comparably new to the game, yet a reliable crowd pleaser.


    You can’t be able to become Master of C# in 3 months since it has many concepts to learn and implement. NOTE: no one can become master in particular programming language. Everyday they introducing new concepts we need to get practice on it which practically somewhat tough.

    C-Sharp is one of the most widely used languages for creating system backend.It's because of its incredible features, such as Windows server automation. Apart from that, it's fantastic because it runs codes quite quickly. It can also be used to create CLI applications and game creation.

    Easy to learn and use: C# is simpler than Java due to its use of fewer keywords and usually shorter lines of code. Hence, it is easier to learn to code in C# compared to Java. Flexible Data Types: C# provides more flexibility in defining data types than Java.

    Four steps of code compilation in C# include : 
    • Source code compilation in managed code.
    • Newly created code is clubbed with assembly code.
    • The Common Language Runtime (CLR) is loaded.
    • Assembly execution is done through CLR.

    The C# language is also easy to learn because by learning a small subset of the language you can immediately start to write useful code. More advanced features can be learnt as you become more proficient, but you are not forced to learn them to get up and running. C# is very good at encapsulating complexity.


    The decision to opt for C# or Node. js largely hinges on the specific requirements of your project. If you're developing a CPU-intensive, enterprise-level application where stability and comprehensive tooling are crucial, C# might be your best bet.


    Among other languages, C# is gaining huge popularity for developing web-based applications. Its core concepts help build an interactive environment and provide functionalities that the dynamic web platform requires. Most aspiring full-stack developers choose this versatile language.

    The C# programming language was designed by Anders Hejlsberg from Microsoft in 2000 and was later approved as an international standard by Ecma (ECMA-334) in 2002 and ISO/IEC (ISO/IEC 23270 and 20619) in 2003. Microsoft introduced C# along with .NET Framework and Visual Studio, both of which were closed-source. 

    C# outshines Python when it comes to runtime performance. As a compiled language, C# code is converted to machine code, which can be executed more efficiently by the processor. This results in faster execution times and better performance, especially in resource-intensive tasks.

    Yes, C# is used by many large organizations, start-ups and beginners alike. It takes some of the useful features of C and adds syntax to save time and effort. Although C# is based on C, you can learn it without any knowledge of C β€” in fact, this course is perfect for those with no coding experience at all!

    C# is a very mature language that evolved significantly over the years.
    The C# language is one of the top 5 most popular programming languages and .NET is the most loved software development framework in the world.
    TIOBE Index predicts C# as 2023 'Language of the Year' close to overtake Java in popularity.

    Generally, the C# language is not limited to the Windows operating system. In a sense, however, it is limited to Microsoft software. C# language "belongs" to Microsoft, it is developed by Microsoft and it is Microsoft that provides the runtime environment required for the operation of programs written in C#.

    C# (pronounced "C sharp") is called so because the "#" symbol is often referred to as "sharp." The name was chosen by Microsoft when they developed the language. It's a play on words related to musical notation where "C#" represents the musical note C sharp.

    Dennis MacAlistair Ritchie (September 9, 1941 – c. October 12, 2011) was an American computer scientist. He created the C programming language and, with long-time colleague Ken Thompson, the Unix operating system and B language.

    C# is part of .NET, a free and open source development platform for building apps that run on Windows, macOS, Linux, iOS, and Android. There's an active community answering questions, producing samples, writing tutorials, authoring books, and more.


    line

    Copyrights © 2024 letsupdateskills All rights reserved