NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error CS1010

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;
      }
   }
}