TimeSecondsPerMonth Method
Returns the number of seconds in the specified month and year.
Namespace: Gemstone.UnitsAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
public static int SecondsPerMonth(
int year,
int month
)
Public Shared Function SecondsPerMonth (
year As Integer,
month As Integer
) As Integer
public:
static int SecondsPerMonth(
int year,
int month
)
Gemstone.Units.Time.SecondsPerMonth = function(year, month);
- year Int32
- The year.
- month Int32
- The month (a number ranging from 1 to 12).
Int32
The number of seconds, as a
Time, in the month for the specified year.
ArgumentOutOfRangeException |
Month is less than 1 or greater than 12. -or- year is less than 1 or greater than 9999.
|