Guest User

Guest User

  • Tech Writer
  • 13
  • 2.3k

cant get the code to compile, help!

Nov 29 2018 7:30 AM
  1. using System;  
  2.    
  3. namespace HelloWorld  
  4. {  
  5.  class Program  
  6.  {  
  7.  static void Main(string[] args)  
  8.  {  
  9.  int i = 15;  
  10.  const string string1 = "Foo";  
  11.  const string string2 = "Bar";  
  12. if(i > 10)  
  13.  {  
  14.  string result = string1;  
  15.  }  
  16.  else  
  17.  {  
  18.  string result = string2;  
  19.  }  
  20.    
  21.  Console.WriteLine(result);  
  22.  }  
  23.  }  
  24. }  

Answers (1)