Ctc.Ods.Types.Section.Equals C# (CSharp) Method

Equals() public method

public Equals ( Section other ) : bool
other Section
return bool
        public bool Equals(Section other)
        {
            if (ReferenceEquals(null, other))
            {
                return false;
            }
            if (ReferenceEquals(this, other))
            {
                return true;
            }
            return Equals(other.ID, ID);
        }

Same methods

Section::Equals ( ISection other ) : bool
Section::Equals ( object obj ) : bool