DateTimeFormatInfo.SortableDateTimePattern Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the custom date and time format string for a sortable date and time value, which is associated with the "s" standard format string.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System.StringThe custom format string for a sortable date and time value, which is associated with the "s" standard format string.
The following example displays the value of SortableDateTimePattern for a few cultures.
using System; using System.Globalization; public class Example { public static void Demo(System.Windows.Controls.TextBlock outputBlock) { // Displays the values of the pattern properties. outputBlock.Text += " CULTURE PROPERTY VALUE" + "\n"; PrintPattern(outputBlock, "en-US"); PrintPattern(outputBlock, "ja-JP"); PrintPattern(outputBlock, "fr-FR"); } public static void PrintPattern(System.Windows.Controls.TextBlock outputBlock, String myCulture) { DateTimeFormatInfo myDTFI = new CultureInfo(myCulture).DateTimeFormat; outputBlock.Text += String.Format(" {0} {1}", myCulture, myDTFI.SortableDateTimePattern) + "\n"; } } /* This example produces the following output. CULTURE PROPERTY VALUE en-US yyyy'-'MM'-'dd'T'HH':'mm':'ss ja-JP yyyy'-'MM'-'dd'T'HH':'mm':'ss fr-FR yyyy'-'MM'-'dd'T'HH':'mm':'ss */
Show: