Home » C# Basics » 03 - C# Programming - Part 1
3

Loops

Defines what loops or iterations are

Loops (also known as iteration statements) are used for repeating a statement or group of statements. The use of loops makes it very easy to repeat a process as many times as we want without writing the same code repeatedly. A major use of loops is in working with Arrays.

C# provides different types of loop statements. We will learn about them one by one using some easy to understand examples: