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 CS1013

Invalid number

A value was assigned to a long variable that is out of the range of the long data type.

The following sample generates CS1013:

namespace x {
   public class a {
      public static void Main() {
      }
   }
   public class b : a {
      public const long i = 0xFFFFFFFFFFFFFFFFFL;   // CS1013
      // try a smaller value
   }
}

See Also

Integral Types Table