1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

現在の日付、時刻を表示するプログラム

Last updated at Posted at 2018-06-27

##現在の日付を表示する方法
今回はC#を使って現在の日付を表示する方法について説明します
##ソースコード


using System;
namespace ConsoleApplication1
{
class Sample
{
static void Main()
{
// 現在の日付を取得する
DateTime dtToday = DateTime.Today;
     // 取得した日付を出力する    
        Console.WriteLine(dtToday.ToString());

        Console.ReadKey();
    }
}

}

##結果
日付.PNG
##現在の時間を表示する方法
DateTimeのTodayプロパティを使うことで現在の日付を取得することはできますが時刻は 00:00:00 固定となります。これでは特に利用する方法が見つからないので時間も取得できるように改変していきます
##ソースコード

using System;
namespace ConsoleApplication1
{
class Sample
{
static void Main()
{
// 現在の日付、時刻を取得する
DateTime dt= DateTime.Now;
Console.WriteLine(dt);



        Console.ReadKey();
    }
}

}

##結果時刻.PNG
##まとめ
DateTime.Nowプロパティを使うことで現在の日付に加えて時刻も取得できるので特別な理由がない限りはDateTime.Nowプロパティを使うことを推奨したいと思いました。
1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?