コード例 #1
0
ファイル: ORMultiDictionary.cs プロジェクト: wj60387/akka.net
        /// <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);
        }
コード例 #2
0
        public bool Equals(ORMultiDictionary <TKey, TValue> other)
        {
            if (ReferenceEquals(other, null))
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return(Equals(_underlying, other._underlying));
        }
コード例 #3
0
ファイル: ORMultiDictionary.cs プロジェクト: wj60387/akka.net
 public ORMultiDictionary<TKey, TValue> Merge(ORMultiDictionary<TKey, TValue> other) =>
     new ORMultiDictionary<TKey, TValue>(_underlying.Merge(other._underlying));