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.GetDaysInYear (Int32, Int32)

Returns the number of days in the month specified by year and era parameters.

[Visual Basic]
Overloads MustOverride Public Function GetDaysInYear( _
   ByVal year As Integer, _
   ByVal era As Integer _
) As Integer
[C#]
public abstract int GetDaysInYear(
   int year,
   int era
);
[C++]
public: virtual int GetDaysInYear(
   int year,
   int era
) = 0;
[JScript]
public abstract function GetDaysInYear(
   year : int,
   era : int
) : int;

Parameters

year
The year.
era
The era.

Return Value

The number of days in the specified year.

See Also

Calendar Class | Calendar Members | System.Globalization Namespace | Calendar.GetDaysInYear Overload List