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 CS1578

Filename, single-line comment or end-of-line expected

After a #line directive, only a file name (in double quotation marks) or a single-line comment is allowed.

The following sample generates CS1578:

using System;
public class MyClass {
   public static void Main() {
      #line 3 abc.cs  // CS1578
      // try the following line instead
      // #line 3 "abc.cs"
      intt i;  // error will be reported on line 101
   }
}