using System;
public class Program
{
public static void Main()
//goto jump statement in a for loop example
int i;
for ( i= 1; i <= 5; i++)
if (i == 4)
goto Matched;
}
Console.WriteLine(i);
Matched: Console.WriteLine("The number {0} is Matched.", i);