In C# you have the break statement which is most often seen in relation to terminating a switch statement. However it can also be used to terminate any loop statement as follows:

for (int i = 0; i < 10; i++)
{
	if (i == 5) break;
}

If you have nested loop- or switch statements, then the break statement will only terminate the closest one.