当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


VB.NET DateTime DaysInMonth()用法及代码示例


DaysInMonth() 方法用于获取指定年份的指定月份中的天数。

用法:

Function DaysInMonth (ByVal year as Integer, ByVal month as Integer) as Integer

参数:

  • Year:指定年份
  • Date2:指定月份

返回值:它返回指定年份的指定月份中的天数。

程序/源代码:

下面给出了演示 DateTime 类的 DaysInMonth() 方法的源代码。给定的程序已成功编译并执行。

'VB.NET program to demonstrate DaysInMonth() method of 
'DateTime class.

Imports System

Module Module1
    Sub Main()
        Dim days As Integer = 0

        days = DateTime.DaysInMonth(2021, 2)

        Console.WriteLine("Number of Days in Feb 2021 are:{0}", days)
    End Sub
End Module

输出:

Number of Days in Feb 2021 are:28
Press any key to continue . . .

说明:

在上面的程序中,我们创建了一个包含 Main() 函数的模块 Module1。 Main() 函数是程序的入口点。

在 Main() 函数中,我们创建了一个初始化为 0 的整数变量 days,在这里,我们得到了 2021 年 2 月的天数,即 28。之后,我们在控制台屏幕上打印天数。





相关用法


注:本文由纯净天空筛选整理自 VB.Net program to demonstrate the DaysInMonth() method of DateTime class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。