public void Accept(IBinaryVisitor visitor)
        {
            visitor.VisitSectionCollection (this);

            for (int i = 0; i < m_items.Count; i++)
                this [i].Accept (visitor);
        }
        public void Accept(IBinaryVisitor visitor)
        {
            visitor.VisitSectionCollection(this);

            for (int i = 0; i < m_items.Count; i++)
            {
                this [i].Accept(visitor);
            }
        }