IsSameMonth method

bool IsSameMonth(
  1. DateTime other
)

Implementation

bool IsSameMonth(DateTime other) {
  return this.month == other.month && IsSameYear(other);
}