Equals() public method

public Equals ( object obj ) : bool
obj object
return bool
Esempio n. 1
0
            public override bool Equals(object obj)
            {
                var other = obj as ReachabilityChanged;

                if (other == null)
                {
                    return(false);
                }
                return(_reachability.Equals(other._reachability));
            }
Esempio n. 2
0
 /// <summary>
 /// TBD
 /// </summary>
 /// <param name="obj">TBD</param>
 /// <returns>TBD</returns>
 public override bool Equals(object obj)
 {
     var other = obj as ReachabilityChanged;
     if (other == null) return false;
     return _reachability.Equals(other._reachability);
 }