looping in c#
//the while loop
while (condition) 
{
  // code block to be executed
}
//the for loop
for (statement 1; statement 2; statement 3) 
{
  // code block to be executed
}
//the foreach loop
foreach (type variableName in arrayName) 
{
  // code block to be executed
}
