Machete.Runtime.RuntimeTypes.SpecificationTypes.SPropertyDescriptor.Equals C# (CSharp) 메소드

Equals() 공개 메소드

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