Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Integral constant is too large
A value assigned to an integral type is larger than the largest possible unsigned integer value.
The following sample generates CS1021:
// CS1021.cs
enum F : int
{
a=(int)2590000000000000000000 // CS1021
}
public class clx
{
public static void Main()
{
}
}