IsSameDay method

bool IsSameDay(
  1. DateTime other
)

Implementation

bool IsSameDay(DateTime other) {
  return this.day == other.day && IsSameMonth(other);
}