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!

Calendar.GetDayOfMonth

Returns the day-of-month part of the specified DateTime.

[Visual Basic]
MustOverride Public Function GetDayOfMonth( _
   ByVal time As DateTime _
) As Integer
[C#]
public abstract int GetDayOfMonth(
   DateTime time
);
[C++]
public: virtual int GetDayOfMonth(
   DateTime time
) = 0;
[JScript]
public abstract function GetDayOfMonth(
   time : DateTime
) : int;

Parameters

time
The DateTime instance.

Return Value

The 1-based day-of-month part of time. The returned value is an integer between 1 and 31[RB13] .

See Also

Calendar Class | Calendar Members | System.Globalization Namespace