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