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() { } } }