DateTimeFormatInfo.CurrentInfo プロパティ

定義

現在のカルチャに基づいて値を形式指定する読み取り専用 DateTimeFormatInfo オブジェクトを取得します。

C#
public static System.Globalization.DateTimeFormatInfo CurrentInfo { get; }

プロパティ値

現在のスレッドに対する CultureInfo オブジェクトに基づく読み取り専用の DateTimeFormatInfo オブジェクト。

次の例では、 プロパティを CurrentInfo 使用して、現在のカルチャの書式設定規則を表す オブジェクトを取得 DateTimeFormatInfo します。この場合は en-US カルチャです。 その後、6 つの書式設定プロパティの書式指定文字列と結果文字列が表示されます。

C#
using System;
using System.Globalization;

public class Example
{
   public static void Main()
   {
      var date = new DateTime(2016, 05, 28, 10, 28, 0);
      var dtfi = DateTimeFormatInfo.CurrentInfo;
      Console.WriteLine("Date and Time Formats for {0:u} in the {1} Culture:\n",
                        date, CultureInfo.CurrentCulture.Name);

      Console.WriteLine("{0,-22} {1,-20} {2,-30}", "Long Date Pattern",
                        dtfi.LongDatePattern,
                        date.ToString(dtfi.LongDatePattern));
      Console.WriteLine("{0,-22} {1,-20} {2,-30}", "Long Time Pattern",
                        dtfi.LongTimePattern,
                        date.ToString(dtfi.LongTimePattern));
      Console.WriteLine("{0,-22} {1,-20} {2,-30}", "Month/Day Pattern",
                        dtfi.MonthDayPattern,
                        date.ToString(dtfi.MonthDayPattern));
      Console.WriteLine("{0,-22} {1,-20} {2,-30}", "Short Date Pattern",
                        dtfi.ShortDatePattern,
                        date.ToString(dtfi.ShortDatePattern));
      Console.WriteLine("{0,-22} {1,-20} {2,-30}", "Short Time Pattern",
                        dtfi.ShortTimePattern,
                        date.ToString(dtfi.ShortTimePattern));
      Console.WriteLine("{0,-22} {1,-20} {2,-30}", "Year/Month Pattern",
                        dtfi.YearMonthPattern,
                        date.ToString(dtfi.YearMonthPattern));
   }
}
// The example displays the following output:
//    Date and Time Formats for 2016-05-28 10:28:00Z in the en-US Culture:
//
//    Long Date Pattern      dddd, MMMM d, yyyy   Saturday, May 28, 2016
//    Long Time Pattern      h:mm:ss tt           10:28:00 AM
//    Month/Day Pattern      MMMM d               May 28
//    Short Date Pattern     M/d/yyyy             5/28/2016
//    Short Time Pattern     h:mm tt              10:28 AM
//    Year/Month Pattern     MMMM yyyy            May 2016

注釈

プロパティによって返される オブジェクトには DateTimeFormatInfoCurrentInfo ユーザーのオーバーライドが反映されます。

適用対象

製品 バージョン
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

こちらもご覧ください