public new SubReportList Clone()
        {
            int           count         = this.Count;
            SubReportList subReportList = new SubReportList(count);

            for (int i = 0; i < count; i++)
            {
                subReportList.Add(this[i]);
            }
            return(subReportList);
        }