System.Globalization.DateTimeFormatInfo.PMDesignator Property

Gets or sets the string designator for hours that are "post meridiem" (after noon).

Syntax

public string PMDesignator { get; set; }

Value

The string designator for hours that are after noon.

Exceptions

TypeReason
ArgumentNullExceptionThe value specified for a set operation is a null reference.
InvalidOperationExceptionThe current instance is read-only and a set operation was attempted.

Remarks

The DateTimeFormatInfo.PMDesignator property is used for all times from 12:00:00 (noon) to 23:59:59.999.

If the custom pattern includes the format pattern "tt" and the time is after noon, DateTime.ToString displays the value of DateTimeFormatInfo.PMDesignator in place of the "tt" in the format pattern. If the custom pattern includes the format pattern "t", only the first character of DateTimeFormatInfo.PMDesignator is displayed. Your application should use "tt" for languages for which it is necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.

For cultures that do not use a PM designator, this property returns an empty string.

Requirements

Namespace: System.Globalization
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0