The string designator for hours that are after noon.
Type Reason ArgumentNullException The value specified for a set operation is a null reference. InvalidOperationException The current instance is read-only and a set operation was attempted.
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.