名前空間一覧 > GrapeCity.Web.Input.Core 名前空間 > DateTimeEx クラス > IsLeapYear メソッド : IsLeapYear() メソッド |
値 | 説明 |
---|---|
True | 閏年です。 |
False | 閏年ではなく通常の年です。 |
Imports GrapeCity.Web.Input.Core Imports System.Diagnostics ' 西暦2000年が閏年かどうかを調べます。 Dim dtEx As DateTimeEx = DateTimeEx.Parse("2000/01/01") Dim result As Boolean = dtEx.IsLeapYear() Debug.WriteLine(result.ToString())
using GrapeCity.Web.Input.Core; using System.Diagnostics; // 西暦2000年が閏年かどうかを調べます。 DateTimeEx dtEx = DateTimeEx.Parse("2000/01/01"); bool result = dtEx.IsLeapYear(); Debug.WriteLine(result.ToString());