Newline in constant
A string was not properly delimited.
The following sample generates CS1010:
namespace x { abstract public class clx { string a = "Hello World; // CS1010, add end quote public static int Main() { return 0; } } }