Unterminated string literal
The compiler detected an ill-formed string literal.
See section 2.5.9.5 of the C# Language Reference for a discussion of the various ways to declare string literals.
The following sample generates CS1039:
public class MyClass { public static void Main() { string b = @"hello, world; // CS1039 } }
To resolve the error, add the terminating ".