int i = 0; while (i < 10) { if (i == 5) goto identifier; }identifier: MessageBox.Show(i);
int i = 0;
while (i < 10)
{
if (i == 5)
goto identifier;
}identifier:
MessageBox.Show(i);
output:5
output:
5