Running C# from a file

Issue #45 resolved
Keith O'Hara created an issue

C# doesn't seem to work when running a file. You can execute each line in the shell and it works, but not running the complete file.

using System;
int a = 1;
int b = 2;
Console.WriteLine(a+b);

Comments (4)

  1. Keith O'Hara reporter

    I get this error:

    (3,0): error CS1525: Unexpected symbol `int'

    When running basic.cs example

  2. Log in to comment