Esempio n. 1
0
 private bool Equals(PropertyMember other)
 {
     return(Equals(Type, other.Type) && IsVirtual == other.IsVirtual &&
            Equals(Getter, other.Getter) && Equals(Setter, other.Setter) &&
            Equals(BackingField, other.BackingField) &&
            string.Equals(Name, other.Name) &&
            string.Equals(FullName, other.FullName) &&
            Equals(DeclaringType, other.DeclaringType));
 }
Esempio n. 2
0
 private bool Equals(PropertyMember other)
 {
     return(Equals(FullName, other.FullName));
 }