Пример #1
0
 public bool Equals(AliasedMember other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other.Member, Member) && Equals(other.Alias, Alias));
 }
Пример #2
0
 public bool Equals(AliasedMember other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other.Member, Member) && Equals(other.Alias, Alias);
 }