Lines Matching defs:obj
12 private readonly T obj; 14 internal ObjectIntPair(T obj, int number) 17 this.obj = obj; 22 return obj == other.obj 26 public override bool Equals(object obj) 28 if (obj is ObjectIntPair<T>) 30 return Equals((ObjectIntPair<T>)obj); 37 return obj.GetHashCode() * ((1 << 16) - 1) + number;