Machete.Runtime.RuntimeTypes.SpecificationTypes.SPropertyDescriptor.Equals C# (CSharp) Method

Equals() public method

public Equals ( IPropertyDescriptor other ) : bool
other IPropertyDescriptor
return 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