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 CS1009

Unrecognized escape sequence

An unexpected character followed a backslash (\) in a string.

The following sample generates CS1009:

// CS1009
namespace x {
   public class a {
      public static void f(int i, char j) {
         string a = "\m";   // CS1009
         // try the following line instead
         // string a = "\t";
      }
      public static void Main() {
      }
   }
}