private OrderedIterator(OrderedIterator other, bool dummy) : base(other) { if (other.iter != null) { this.iter = (BaseIterator)other.iter.Clone(); } this.list = other.list; this.index = other.index; }
private OrderedIterator (OrderedIterator other, bool dummy) : base (other) { if (other.iter != null) iter = (BaseIterator) other.iter.Clone (); list = other.list; index = other.index; }