Editor.BE.Model.ElementType.Equals C# (CSharp) Method

Equals() public method

public Equals ( ElementType obj ) : bool
obj ElementType
return bool
        public virtual bool Equals(ElementType obj)
        {
            if (obj == null) return false;

            if (Equals(Elementtypeid, obj.Elementtypeid) == false)
                return false;

            if (Equals(Description, obj.Description) == false)
                return false;

            return true;
        }

Same methods

ElementType::Equals ( object obj ) : bool