利用共享方法DaysInMonth可以获得指定月份的天数,例如:
Output.Show("2008年2月有" & Date.DaysInMonth(2008,2) & "天")
Dim Days As IntegerDays = Date.DaysInMonth(2007,2)Output.Show(Days)
上述代码输出2007年2月份的天数。