DateTimeFormatInfo.AbbreviatedMonthNames Property

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Gets or sets a one-dimensional string array that contains the culture-specific abbreviated names of the months.

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

Syntax

'Declaration
Public Property AbbreviatedMonthNames As String()
public string[] AbbreviatedMonthNames { get; set; }

Property Value

Type: array<System.String[]
A one-dimensional string array with 13 elements that contains the culture-specific abbreviated names of the months. For 12-month calendars, the 13th element of the array is an empty string. The array for InvariantInfo contains "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", and "".

Exceptions

Exception Condition
ArgumentNullException

An attempt was made to set the property to nulla null reference (Nothing in Visual Basic).

ArgumentException

An attempt was made to set the property to a multidimensional array or to a single-dimensional array with a length that is not exactly 13.

InvalidOperationException

The DateTimeFormatInfo object is read-only.

Remarks

If you set this property, the array must be one-dimensional with exactly 13 elements. Calendar objects accommodate calendars with 13 months. For 12-month calendars, the thirteenth element of the array should be set to String.Empty.

If you set the AbbreviatedMonthNames property, you must also set the AbbreviatedMonthGenitiveNames property.

The AbbreviatedMonthNames and AbbreviatedMonthGenitiveNames properties are used to format dates using the following format strings:

  • A standard date and time format string that aliases a custom format string that includes the "MMM" format specifier.

  • A custom date and time format string that includes the "MMM" format specifier.

This property is affected if the value of the Calendar property changes. If the selected Calendar does not support abbreviated month names, the array contains the full month names.

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.