本文整理汇总了VB.NET中System.Globalization.ThaiBuddhistCalendar.GetMonthsInYear方法的典型用法代码示例。如果您正苦于以下问题:VB.NET ThaiBuddhistCalendar.GetMonthsInYear方法的具体用法?VB.NET ThaiBuddhistCalendar.GetMonthsInYear怎么用?VB.NET ThaiBuddhistCalendar.GetMonthsInYear使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。
在下文中一共展示了ThaiBuddhistCalendar.GetMonthsInYear方法的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()
' Displays the header.
Console.Write("YEAR" + ControlChars.Tab)
Dim y As Integer
For y = 2544 To 2548
Console.Write(ControlChars.Tab + "{0}", y)
Next y
Console.WriteLine()
' Displays the value of the CurrentEra property.
Console.Write("CurrentEra:")
For y = 2544 To 2548
Console.Write(ControlChars.Tab + "{0}", myCal.GetMonthsInYear(y, ThaiBuddhistCalendar.CurrentEra))
Next y
Console.WriteLine()
' Displays the values in the Eras property.
Dim i As Integer
For i = 0 To myCal.Eras.Length - 1
Console.Write("Era {0}:" + ControlChars.Tab, myCal.Eras(i))
For y = 2544 To 2548
Console.Write(ControlChars.Tab + "{0}", myCal.GetMonthsInYear(y, myCal.Eras(i)))
Next y
Console.WriteLine()
Next i
End Sub
End Class
输出:
YEAR 2544 2545 2546 2547 2548 CurrentEra: 12 12 12 12 12 Era 1: 12 12 12 12 12