How do I reference mscorlib
for C# in cloud9?
The sample code for hello world doesn't work
using System;
public class Hello2
{
public static void Main()
{
Console.WriteLine("Hello, World!");
}
}
because it emits the following errors:
error: expected nested-name-specifier before ‘System’ using System;
error: ‘System’ has not been declared
error: expected unqualified-id before ‘public’
public class Hello2