閱讀英文

共用方式為


DateTime.MaxValue 欄位

定義

代表 DateTime 最大的可能值。 此欄位為唯讀。

public static readonly DateTime MaxValue;

欄位值

範例

下列範例會藉由傳遞其建構 Int64 函式代表一些刻度的值,來具現 DateTime 化 物件。 叫用建構函式之前,此範例會確保此值大於或等於 DateTime.MinValue.Ticks ,且小於或等於 DateTime.MaxValue.Ticks 。 如果沒有,則會擲回 ArgumentOutOfRangeException

// Attempt to assign an out-of-range value to a DateTime constructor.
long numberOfTicks = Int64.MaxValue;
DateTime validDate;

// Validate the value.
if (numberOfTicks >= DateTime.MinValue.Ticks &&
    numberOfTicks <= DateTime.MaxValue.Ticks)
   validDate = new DateTime(numberOfTicks);
else if (numberOfTicks < DateTime.MinValue.Ticks)
   Console.WriteLine("{0:N0} is less than {1:N0} ticks.",
                     numberOfTicks,
                     DateTime.MinValue.Ticks);
else
   Console.WriteLine("{0:N0} is greater than {1:N0} ticks.",
                     numberOfTicks,
                     DateTime.MaxValue.Ticks);
// The example displays the following output:
//   9,223,372,036,854,775,807 is greater than 3,155,378,975,999,999,999 ticks.

備註

這個常數的值相當於西曆 99999 年 12 月 31 日 9999 年 12 月 31 日 23:59:59:59:00 UTC 之前的 100 奈秒刻度,剛好是 00:00:00 UTC,10000 年 1 月 1 日。

某些行事曆,例如 ThaiBuddhistCalendar ,支援早于 MaxValue 的上限日期範圍。 在這些情況下,嘗試存取 MaxValue 變數指派或格式化和剖析作業可能會擲回 ArgumentOutOfRangeException 。 您可以擷取 DateTime.MaxValue 指定文化特性的最新有效日期值的值,而不是擷 Calendar.MaxSupportedDateTime 取 的值。

適用於

產品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0

另請參閱