データ操作

[C#] 月の日数を取得する(DateTime.DaysInMonth)

月の日数を取得するには、DateTime.DaysInMonth() を使用します。

構文

構文

int <月の日数> = DateTime.DaysInMonth(<年>, <月>);

サンプル

例)2022年2月の日数を取得する


using System;

// 2022年2月の日数を取得する
int result = DateTime.DaysInMonth(2022, 2);

結果

result → 28

備考

  • 存在しない月を指定すると例外「System.ArgumentOutOfRangeException」が発生します。

関連記事

-データ操作
-