PowerTools InputMan for ASP.NET 8.0J
DaysInMonth メソッド
使用例 

西暦で表した年(Int32 型)
月を示す1〜12までの数値(Int32 型)
特定の月の日数を返します。
構文
Public Shared Function DaysInMonth( _
   ByVal year As Integer, _
   ByVal month As Integer _
) As Integer
public static int DaysInMonth( 
   int year,
   int month
)

パラメータ

year
西暦で表した年(Int32 型)
month
月を示す1〜12までの数値(Int32 型)

戻り値の型

指定された月の日数。
解説
DaysInMonthメソッドは、指定した年の指定した月に含まれる日数を取得します。引数 month が2の場合は、引数 year が閏年かどうかで戻り値が変化(28または29)します。

DaysInMonthメソッドは、静的メンバ(特定のオブジェクトではなく型自体に属している)なので、インスタンスを使って参照することはできません。型の名前である「DateTimeEx」を使って参照します。
使用例
次のサンプルコードは、DaysInMonthメソッドの使用方法を示します。
Imports GrapeCity.Web.Input.Core

' 2010年2月の日数を取得します。
Dim daysIn As Integer = DateTimeEx.DaysInMonth(2010, 2)
using GrapeCity.Web.Input.Core;

// 2010年2月の日数を取得します。
int daysIn = DateTimeEx.DaysInMonth(2010, 2);
参照

DateTimeEx クラス
DateTimeEx メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.