Цикли

for (int i = 0; i < 10; i++)

{

}

while (i > 0)

{

}

do

{

}

while (i > 0);

foreach (int element in array) 

}

break;

continue;