loops in coding

C#
Do
 X = 5+2
Loop Until X > 5
Do
 Do_Something
Loop
Do While X <= 5
 X = X + 5 
Loop

Source

Also in C#: