CodeCS (C# syntax error).cs 174 B

123456
  1. using System.Windows.Forms;
  2. class Foo {
  3. public void Test() {
  4. MessageBox.Show( "Hello world from C#!" ) // Syntax error: Missing semicolon at the end of the code line
  5. }
  6. }