LoginSignup
1
1

More than 5 years have passed since last update.

C#時刻サンプル

Last updated at Posted at 2015-11-28
using System;
class date{
    public static void Main() {
        Console.WriteLine(DateTime.Now);
        // 2011/11/30 9:22:35
        Console.WriteLine(DateTime.Today);
        // 2011/11/30 0:00:00
        DateTime dt = DateTime.Now;
        Console.WriteLine(dt.Year   + "年"); // 2011年     Console.WriteLine(dt.Month  + "月"); // 11月
        Console.WriteLine(dt.Day    + "日"); // 30日
        Console.WriteLine(dt.Hour   + "時"); // 9時
        Console.WriteLine(dt.Minute + "分"); // 22分
        Console.WriteLine(dt.Second + "秒"); // 35秒
        Console.WriteLine(dt.ToString("F"));
        // 2011年11月30日 9:22:35
        Console.WriteLine(dt.ToString("yyyy年MM月dd日 HH時mm分ss秒"));
        20111130 092235
    }
}
1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1