C# Error CS1021 – Integral constant is too large

C# Error

CS1021 – Integral constant is too large

Reason for the Error & Solution

Integral constant is too large

A value represented by an integer literal is greater than .

The following sample generates CS1021:

// CS1021.cs  
class Program
{
    static void Main(string[] args)
    {
        int a = 18_446_744_073_709_552_000;
    }
}  

The following code also generates CS1021:

using System.Numerics;

class Program
{
    static void Main(string[] args)
    {
        var a = new BigInteger(18_446_744_073_709_552_000);
    }
}

For information about how to instantiate a instance whose value exceeds the range of the built-in numeric types, see the section of the reference page.

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...