datetime クラス : Month ゲッタ

説明

このインスタンスの月部分を取得します。

構文

datetimeInstance.Month

引数

無し。

返り値

クラス説明
int月部分 (1 ~ 12)

サンプルコード

1:

datetime dt = new datetime(2016, 3, 4, 4, 13, 0);

2:

int month = dt.Month; // 3

注意

これは、System.DateTime.Month プロパティのラッパーです。

参照リンク

Copyright © Cooker All rights reserved.