Bridge

DateTimeFormatInfo..::..AbbreviatedDayNames Property

Gets or sets a one-dimensional array of type String containing the culture-specific abbreviated names of the days of the week.

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

Syntax


[FieldPropertyAttribute]
public string[] AbbreviatedDayNames { get; set; }
<FieldPropertyAttribute> _
Public Property AbbreviatedDayNames As String()
	Get
	Set
[FieldPropertyAttribute]
public:
property array<String^>^ AbbreviatedDayNames {
	array<String^>^ get ();
	void set (array<String^>^ value);
}

Return Value

A one-dimensional array of type String containing the culture-specific abbreviated names of the days of the week. The array for InvariantInfo contains "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", and "Sat".

Exceptions


ExceptionCondition
System..::..ArgumentNullExceptionThe property is being set to null.
System..::..ArgumentExceptionThe property is being set to an array that is multidimensional or that has a length that is not exactly 7.
System..::..InvalidOperationExceptionThe property is being set and the DateTimeFormatInfo object is read-only.