1
Answer

cant get the code to compile, help!

Guest User

Guest User

6y
443
1
  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)