DateTime.ToLongDateString メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在の DateTime オブジェクトの値を、それと等価な長い形式の日付の文字列形式に変換します。
public:
System::String ^ ToLongDateString();
public string ToLongDateString ();
member this.ToLongDateString : unit -> string
Public Function ToLongDateString () As String
戻り値
現在の DateTime オブジェクトを長い形式の日付で表した文字列。
例
ToLongDateStringメソッドの例を次に示します。
open System
open System.Globalization
// Initialize a DateTime object.
printfn "Initialize the DateTime object to May 16, 2001 3:02:15 AM.\n"
let dateAndTime = DateTime(2001, 5, 16, 3, 2, 15)
// Display the name of the current culture.
printfn $"Current culture: \"{CultureInfo.CurrentCulture.Name}\"\n"
let dtfi = CultureInfo.CurrentCulture.DateTimeFormat
// Display the long date pattern and string.
printfn $"Long date pattern: \"{dtfi.LongDatePattern}\""
printfn $"Long date string: \"{dateAndTime.ToLongDateString()}\"\n"
// Display the long time pattern and string.
printfn $"Long time pattern: \"{dtfi.LongTimePattern}\""
printfn $"Long time string: \"{dateAndTime.ToLongTimeString()}\"\n"
// Display the short date pattern and string.
printfn $"Short date pattern: \"{dtfi.ShortDatePattern}\""
printfn $"Short date string: \"{dateAndTime.ToShortDateString()}\"\n"
// Display the short time pattern and string.
printfn $"Short time pattern: \"{dtfi.ShortTimePattern}\""
printfn $"Short time string: \"{dateAndTime.ToShortTimeString()}\"\n"
// The example displays output similar to the following:
// Current culture: "en-US"
//
// Long date pattern: "dddd, MMMM d, yyyy"
// Long date string: "Wednesday, May 16, 2001"
//
// Long time pattern: "h:mm:ss tt"
// Long time string: "3:02:15 AM"
//
// Short date pattern: "M/d/yyyy"
// Short date string: "5/16/2001"
//
// Short time pattern: "h:mm tt"
// Short time string: "3:02 AM"
using System;
using System.Globalization;
class Sample
{
public static void Main()
{
// Initialize a DateTime object.
Console.WriteLine("Initialize the DateTime object to May 16, 2001 3:02:15 AM.\n");
DateTime dateAndTime = new System.DateTime(2001, 5, 16, 3, 2, 15);
// Display the name of the current culture.
Console.WriteLine($"Current culture: \"{CultureInfo.CurrentCulture.Name}\"\n");
var dtfi = CultureInfo.CurrentCulture.DateTimeFormat;
// Display the long date pattern and string.
Console.WriteLine($"Long date pattern: \"{dtfi.LongDatePattern}\"");
Console.WriteLine($"Long date string: \"{dateAndTime.ToLongDateString()}\"\n");
// Display the long time pattern and string.
Console.WriteLine($"Long time pattern: \"{dtfi.LongTimePattern}\"");
Console.WriteLine($"Long time string: \"{dateAndTime.ToLongTimeString()}\"\n");
// Display the short date pattern and string.
Console.WriteLine($"Short date pattern: \"{dtfi.ShortDatePattern}\"");
Console.WriteLine($"Short date string: \"{dateAndTime.ToShortDateString()}\"\n");
// Display the short time pattern and string.
Console.WriteLine($"Short time pattern: \"{dtfi.ShortTimePattern}\"");
Console.WriteLine($"Short time string: \"{dateAndTime.ToShortTimeString()}\"\n");
}
}
// The example displays output similar to the following:
// Current culture: "en-US"
//
// Long date pattern: "dddd, MMMM d, yyyy"
// Long date string: "Wednesday, May 16, 2001"
//
// Long time pattern: "h:mm:ss tt"
// Long time string: "3:02:15 AM"
//
// Short date pattern: "M/d/yyyy"
// Short date string: "5/16/2001"
//
// Short time pattern: "h:mm tt"
// Short time string: "3:02 AM"
Imports System.Globalization
Module Example
Public Sub Main()
' Initialize a DateTime object.
Console.WriteLine($"Initialize the DateTime object to May 16, 2001 3:02:15 AM.{vbCrLf}")
Dim dateAndTime As New DateTime(2001, 5, 16, 3, 2, 15)
' Display the name of the current culture.
Console.WriteLine($"Current culture: ""{CultureInfo.CurrentCulture.Name}""{vbCrLf}")
Dim dtfi = CultureInfo.CurrentCulture.DateTimeFormat
' Display the long date pattern and string.
Console.WriteLine($"Long date pattern: ""{dtfi.LongDatePattern}""")
Console.WriteLine($"Long date string: ""{dateAndTime.ToLongDateString()}{vbCrLf}")
' Display the long time pattern and string.
Console.WriteLine($"Long time pattern: ""{0}""", dtfi.LongTimePattern)
Console.WriteLine($"Long time string: ""{dateAndTime.ToLongTimeString()}{vbCrLf}")
' Display the short date pattern and string.
Console.WriteLine($"Short date pattern: ""{dtfi.ShortDatePattern}""")
Console.WriteLine($"Short date string: ""{dateAndTime.ToShortDateString()}{vbCrLf}")
' Display the short time pattern and string.
Console.WriteLine($"Short time pattern: ""{dtfi.ShortTimePattern}""")
Console.WriteLine($"Short time string: ""{dateAndTime.ToShortTimeString()}{vbCrLf}")
End Sub
End Module
' The example displays output like the following:
' Initialize the DateTime object to May 16, 2001 3:02:15 AM.
'
' Current culture: "en-US"
'
' Long date pattern: "dddd, MMMM d, yyyy"
' Long date string: "Wednesday, May 16, 2001
'
' Long time pattern: "0"
' Long time string: "3:02:15 AM
'
' Short date pattern: "M/d/yyyy"
' Short date string: "5/16/2001
'
' Short time pattern: "h:mm tt"
' Short time string: "3:02 AM
注釈
現在のオブジェクトの値は、現在 DateTime のカルチャに関連付けられているプロパティによって定義されたパターンを LongDatePattern 使用して書式設定されます。 戻り値は、メソッドで "D" 標準の DateTime 書式指定文字列 を指定して返される値と ToString(String) 同じです。
注意
メソッドによって ToLongDateString 返される文字列はカルチャに依存します。 現在のカルチャのプロパティによって定義されたパターンが DateTimeFormatInfo.LongDatePattern 反映されます。 たとえば、en-US カルチャの場合、標準の長い日付パターンは一般的に "dddd, MMMM dd, yyyy" です。de-DE カルチャの場合、"dddd, d. MMMM yyyy";ja-JP カルチャでは、"yyyy'年'M'月'日'" です。 その値は、.NET の実装とそのバージョン、オペレーティング システムとそのバージョン、およびユーザーのカスタマイズによって異なる場合があることに注意してください。
現在のスレッド カルチャについて詳しくは、CultureInfo.CurrentCulture および Thread.CurrentCulture プロパティを参照してください。 書式指定文字、書式パターン、およびそれらによって生成される出力について詳しくは、「標準の日時書式指定文字列」と「カスタム日時書式指定文字列」をご覧ください。 書式指定文字に関連付けられている書式パターンの変更について詳しくは、DateTimeFormatInfo クラスをご覧ください。