getDaysInMonth method
Returns the number of days in the month of this DateTime.
Implementation
int getDaysInMonth() {
return DateTimeCalculator.getDaysCountInMonth(year, month);
}
Returns the number of days in the month of this DateTime.
int getDaysInMonth() {
return DateTimeCalculator.getDaysCountInMonth(year, month);
}