LoginSignup
1
0

More than 5 years have passed since last update.

今日の日付表示

Last updated at Posted at 2018-07-05

今日の日付と時間を表示

using System;

namespace sample
{
    class Program
    {
        static void Main(string[] args)
        {
            //日付
            DateTime a = DateTime.Now;
            Console.WriteLine(a);
        }
    }
}

実行結果

vmmap[50044]: [fatal]  child process status could not be determined; exit code unavailable.2018/07/05 16:31:59
1
0
0

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
0