This document is a lesson on repetition structures (loops) in C# for beginners. It introduces while, for, and do-while loops. The while loop executes a block of code as long as a condition is true. The for loop is preferred when the number of iterations is known. The do-while loop checks the condition after executing the statements, so the body is executed at least once. Examples are provided for each loop type. The document ends with assignments for students to write looping programs.