public bool Equals(UnitSystem other) { if (other is null) { return(false); } return(BaseUnits.Equals(other.BaseUnits)); }
/// <inheritdoc /> public bool Equals(UnitSystem?other) { return(other is not null && BaseUnits.Equals(other.BaseUnits)); }