Machete.Runtime.RuntimeTypes.SpecificationTypes.SPropertyDescriptor.Equals C# (CSharp) Méthode

Equals() public méthode

public Equals ( IPropertyDescriptor other ) : bool
other IPropertyDescriptor
Résultat bool
        public bool Equals(IPropertyDescriptor other)
        {
            return Value == other.Value
                && Writable == other.Writable
                && Get == other.Get
                && Set == other.Set
                && Enumerable == other.Enumerable
                && Configurable == other.Configurable;
        }
SPropertyDescriptor