Exemple #1
0
        public bool Equals(UnitSystem other)
        {
            if (other is null)
            {
                return(false);
            }

            return(BaseUnits.Equals(other.BaseUnits));
        }
Exemple #2
0
 /// <inheritdoc />
 public bool Equals(UnitSystem?other)
 {
     return(other is not null && BaseUnits.Equals(other.BaseUnits));
 }