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

Equals() public method

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

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

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

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

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

            return true;
        }

Same methods

Theme::Equals ( object obj ) : bool