/// <inheritdoc/> public bool Equals(ORMultiDictionary<TKey, TValue> other) { if (ReferenceEquals(other, null)) return false; if (ReferenceEquals(this, other)) return true; return Equals(_underlying, other._underlying); }
public bool Equals(ORMultiDictionary <TKey, TValue> other) { if (ReferenceEquals(other, null)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(Equals(_underlying, other._underlying)); }
public ORMultiDictionary<TKey, TValue> Merge(ORMultiDictionary<TKey, TValue> other) => new ORMultiDictionary<TKey, TValue>(_underlying.Merge(other._underlying));