Advertisement
Guest User

goto

a guest
Apr 6th, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.19 KB | None | 0 0
  1.             int i = 0;
  2.             display:
  3.             Console.WriteLine("Hello World");
  4.             i++;
  5.             if (i < 5)
  6.             {
  7.                 goto display;
  8.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement