Share via


DateSeparator Property

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Gets or sets the string that separates the components of a date, that is, the year, month, and day.

Namespace:  System.Globalization
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public ReadOnly Property DateSeparator As String
public string DateSeparator { get; }
public:
property String^ DateSeparator {
    String^ get ();
}
member DateSeparator : string with get
function get DateSeparator () : String

Property Value

Type: System. . :: . .String
The string that separates the components of a date, that is, the year, month, and day. The default for InvariantInfo is "/".

Remarks

If a custom format string includes the "/" format specifier, the DateTime..::..ToString method displays the value of DateSeparator in place of the "/" in the result string.

The date separator is derived from the ShortDatePattern property. We recommend that you set the date separator in the short date pattern to an exact string instead of using the date separator placeholder. For example, to obtain the pattern MM-DD-yyyy, set the short date pattern to "MM-DD-yyyy". This practice also enables you to set patterns such as "MM/DD, yyyy" that include multiple types of separators.

.NET Framework Security

See Also

Reference

DateTimeFormatInfo Class

System.Globalization Namespace