Lines Matching defs:other
14 // in the documentation and/or other materials provided with the
350 /// <param name="other">The <see cref="System.Object" /> to compare with this instance.</param>
354 public override bool Equals(object other)
356 return Equals(other as MapField<TKey, TValue>);
383 /// <param name="other">The map to compare this with.</param>
384 /// <returns><c>true</c> if <paramref name="other"/> refers to an equal map; <c>false</c> otherwise.</returns>
385 public bool Equals(MapField<TKey, TValue> other)
387 if (other == null)
391 if (other == this)
395 if (other.Count != this.Count)
403 if (!other.TryGetValue(pair.Key, out value))