分かりやすく、使いやすく。

現在日時を DateTime 型で取得する方法

スポンサーリンク

C# で現在日時を DateTime 型で取得するには System.DateTime.Now を使用します。サンプルコードは次の通りです。

C#(実行可能なサンプルコード)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 現在日時をDateTime型で取得
var now = System.DateTime.Now;
 
// 年を数値(int)で取得する
System.Diagnostics.Debug.WriteLine(now.Year);
 
// 月を数値(int)で取得する
System.Diagnostics.Debug.WriteLine(now.Month);
 
// 日を数値(int)で取得する
System.Diagnostics.Debug.WriteLine(now.Day);
 
// 時を数値(int)で取得する
System.Diagnostics.Debug.WriteLine(now.Hour);
 
// 分を数値(int)で取得する
System.Diagnostics.Debug.WriteLine(now.Minute);
 
// 秒を数値(int)で取得する
System.Diagnostics.Debug.WriteLine(now.Second); 

現在日時を yyyymmdd 形式の文字列で取得したい場合はyyyymmdd 形式の文字列で現在日付を取得する方法を参照してください。

スポンサーリンク
スポンサーリンク