Carrotware.CMS.Core.ObjectProperty.Equals C# (CSharp) Метод

Equals() публичный Метод

public Equals ( Object obj ) : bool
obj Object
Результат bool
        public override bool Equals(Object obj)
        {
            //Check for null and compare run-time types.
            if (obj == null || this.GetType() != obj.GetType()) return false;
            if (obj is ObjectProperty) {
                ObjectProperty p = (ObjectProperty)obj;
                return (this.Name == p.Name) && (this.PropertyType == p.PropertyType);
            } else {
                return false;
            }
        }