IsSame method
Implementation
@override
bool IsSame(Recurrence otherRecurrence) {
return super.IsSame(otherRecurrence) &&
this._dayOfMonth == (otherRecurrence as MonthlyPattern)._dayOfMonth;
}
@override
bool IsSame(Recurrence otherRecurrence) {
return super.IsSame(otherRecurrence) &&
this._dayOfMonth == (otherRecurrence as MonthlyPattern)._dayOfMonth;
}