Taal

LocalDate.IsEqual(IChronoLocalDate) Method

Definition

Checks if this date is equal to the specified date.

[Android.Runtime.Register("isEqual", "(Ljava/time/chrono/ChronoLocalDate;)Z", "", ApiSince=26)]
public bool IsEqual(Java.Time.Chrono.IChronoLocalDate? other);
[<Android.Runtime.Register("isEqual", "(Ljava/time/chrono/ChronoLocalDate;)Z", "", ApiSince=26)>]
abstract member IsEqual : Java.Time.Chrono.IChronoLocalDate -> bool
override this.IsEqual : Java.Time.Chrono.IChronoLocalDate -> bool

Parameters

other
IChronoLocalDate

the other date to compare to, not null

Returns

true if this date is equal to the specified date

Implements

Attributes

Remarks

Checks if this date is equal to the specified date. This checks to see if this date represents the same point on the local time-line as the other date. This method only considers the position of the two dates on the local time-line. It does not take into account the chronology, or calendar system. This is different from the comparison in compareTo(ChronoLocalDate) but is the same approach as ChronoLocalDate.timeLineOrder().

Java reference for java.time.LocalDate.isEqual.

Applies to