System.Range.Equals C# (CSharp) Method

Equals() public method

Indicates whether the current Range object is equal to another object of the same type.
public Equals ( object? value ) : bool
value object? An object to compare with this object
return bool
        public override bool Equals([NotNullWhen(true)] object? value) =>
            value is Range r &&
            r.Start.Equals(Start) &&