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 CS1021

Integral constant is too large

A value was assigned to an integral type that is larger that the largest possible unsigned integer value.

The following sample generates CS1021:

enum F : int {
   a=(int)2590000000000000000000   // CS1021
}

public class clx {
   public static void Main() {
   }   

}