Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[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 designator for hours that are "post meridiem" (after noon).
Namespace: System.Globalization
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public ReadOnly Property PMDesignator As String
public string PMDesignator { get; }
public:
property String^ PMDesignator {
String^ get ();
}
member PMDesignator : string with get
function get PMDesignator () : String
Property Value
Type: System. . :: . .String
The string designator for hours that are "post meridiem" (after noon). The default for InvariantInfo is "PM".
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | The property is being set to null Nothing nullptr unit a null reference (Nothing in Visual Basic) . |
InvalidOperationException | The property is being set and the DateTimeFormatInfo object is read-only. |
Remarks
The 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 PMDesignator in place of the "tt" in the format pattern. If the custom pattern includes the format pattern "t", only the first character of 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.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.