本文整理匯總了VB.NET中System.Globalization.ThaiBuddhistCalendar.IsLeapMonth方法的典型用法代碼示例。如果您正苦於以下問題:VB.NET ThaiBuddhistCalendar.IsLeapMonth方法的具體用法?VB.NET ThaiBuddhistCalendar.IsLeapMonth怎麽用?VB.NET ThaiBuddhistCalendar.IsLeapMonth使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。
在下文中一共展示了ThaiBuddhistCalendar.IsLeapMonth方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。
示例1: Main
' 導入命名空間
Imports System.Globalization
Public Class SamplesThaiBuddhistCalendar
Public Shared Sub Main()
' Creates and initializes a ThaiBuddhistCalendar.
Dim myCal As New ThaiBuddhistCalendar()
' Checks all the months in five years in the current era.
Dim iMonthsInYear As Integer
Dim y As Integer
For y = 2544 To 2548
Console.Write("{0}:" + ControlChars.Tab, y)
iMonthsInYear = myCal.GetMonthsInYear(y, ThaiBuddhistCalendar.CurrentEra)
Dim m As Integer
For m = 1 To iMonthsInYear
Console.Write(ControlChars.Tab + "{0}", myCal.IsLeapMonth(y, m, ThaiBuddhistCalendar.CurrentEra))
Next m
Console.WriteLine()
Next y
End Sub
End Class
輸出:
2544: False False False False False False False False False False False False 2545: False False False False False False False False False False False False 2546: False False False False False False False False False False False False 2547: False False False False False False False False False False False False 2548: False False False False False False False False False False False False