Glossary for C#: loops
Learn C# (C sharp) in FREE step-by-step lessons.
cards: A loop for each suit with a nested loop for each card. Also uses switch.
Nested Loops: generate a deck of cardsdo loop: A do loop always executes at least once.
Introduction to do Loopsdo: A do loop tests the condition at the end of the loop.
do loops test condition at end, and execute 1 or more times endless loop: Shows a do loop that is endless because there is no increment of the variable.
Endless do loopsfor each list: Use the foreach loop to remove blank lines from a list box.
For Each Loops with a Listfor each: The foreach loop works on a collection or an array.
For Each Loopsfor format: Explanation of the format of the for loop.
Format of the for Loopfor loop: The while loop to add 1, 2, 3 to the listbox is changed to a for loop.
Introducing the for loopincrement: The position of the increment changes the values and also what is added to list box
Position of increment in looploop for: The while loop to add 1, 2, 3 to the listbox is changed to a for loop.
Introducing the for looploop: do: A do loop always executes at least once.
Introduction to do Loopsloop: for each list: Use the foreach loop to remove blank lines from a list box.
For Each Loops with a Listloop: increment: The position of the increment changes the values and also what is added to list box
Position of increment in looploop: month and seasons: The switch/case block is embedded inside the loop
Months and Seasonsloops reference: View the Microsoft information on loops in C#
References: loopsloops: cards: A loop for each suit with a nested loop for each card. Also uses switch.
Nested Loops: generate a deck of cardsloops: for each: The foreach loop works on a collection or an array.
For Each Loopsloops: nested: One loop can be inside another loop, or nested
Nested Loopsloops: while: Cautions about possibility of endless loops and loops that execute 0 times.
A few notes about the while looploops: Statements to add 1,2,3 to list box individually are converted to a while loop.
Prepare code for loopnested loop: One loop can be inside another loop, or nested
Nested Loopssorted: If the sorted property of the list box is true, the values are sorted as strings
Sorted valueswhile loops: Cautions about possibility of endless loops and loops that execute 0 times.
A few notes about the while loopwhile loop: A while loop generates the powers of 2: 2, 4, 8, 16, 32, 64, 128, 512, 1024
While, cont.while vs. for: Compares a for and a while loop that each generate the values 1, 2, 3, 4, 5.
Compare while and for LoopsFull Glossary