コード例 #1
0
        // Copy constructor
        public DateTimePointList(DateTimePointList rhs)
        {
            XType = rhs.XType;
            YType = rhs.YType;
            TType = rhs.TType;

            // Don't duplicate the data values, just copy the reference to the List
            this.aList = rhs.aList;
        }
コード例 #2
0
        // Copy constructor
        public DateTimePointList(DateTimePointList rhs)
        {
            XType = rhs.XType;
            YType = rhs.YType;
            TType = rhs.TType;

            // Don't duplicate the data values, just copy the reference to the List
            this.aList = rhs.aList;
        }