共用方式為


編譯器錯誤 CS1021

整數常數太大

整數常值所表示的值大於 UInt64.MaxValue

下列範例會產生 CS1021:

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

下列程式碼也會產生 CS1021:

using System.Numerics;

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

如需如何具現化 System.Numerics.BigInteger 執行個體 (其值超過內建數字類型範圍) 的資訊,請參閱 BigInteger 參考頁面的具現化 BigInteger 物件一節。