NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DateTimeFormatInfo.GetAbbreviatedDayName (Int32, Calendar)

Returns the abbreviated name of the specified day of the week using the specified calendar.

[Visual Basic]
Overloads Overridable Public Function GetAbbreviatedDayName( _
   ByVal dayofweek As Integer, _
   ByVal calendar As Calendar _
) As String
[C#]
public virtual string GetAbbreviatedDayName(
   int dayofweek,
   Calendar calendar
);
[C++]
public: virtual String* GetAbbreviatedDayName(
   int dayofweek,
   Calendar* calendar
);
[JScript]
public function GetAbbreviatedDayName(
   dayofweek : int,
   calendar : Calendar
) : String;

Parameters

dayofweek
A value representing the day of the week. This must satisfy 0 <= dayofweek <= 6.
calendar
The Calendar that represents the calendar in which to get the abbreviated name. If this is null, the GregorianCalendar is used.

Return Value

Returns the abbreviated name for the specified day of the week.

See Also

DateTimeFormatInfo Class | DateTimeFormatInfo Members | System.Globalization Namespace | DateTimeFormatInfo.GetAbbreviatedDayName Overload List