Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# goto statement

using System;  
public class GotoExample  
    {  
      public static void Main(string[] args)  
      {  
      ineligible:  
          Console.WriteLine("You are not eligible to vote!");  
  
      Console.WriteLine("Enter your age:
");  
      int age = Convert.ToInt32(Console.ReadLine());  
      if (age < 18){  
              goto ineligible;  
      }  
      else  
      {  
              Console.WriteLine("You are eligible to vote!");   
      }  
      }  
   }  
Source by www.javatpoint.com #
 
PREVIOUS NEXT
Tagged: #goto #statement
ADD COMMENT
Topic
Name
6+3 =