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)

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

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

Parameters

dayofweek
A value representing the day of the week. This must satisfy 0 <= dayofweek <= 6.

Return Value

Returns the abbreviated name of the day of the week represented by dayofweek.

Remarks

This method calls GetAbbreviatedDayName(int dayofweek, Calendar* calendar) and passes along the calendar associated with the CultureInfo of the current thread.

See Also

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