Exemplo n.º 1
0
        public override void Copy(int destinationIndex, DocumentNodeMarkerSortedListBase sourceList, int sourceIndex)
        {
            DocumentNodeMarkerSortedList markerSortedList = (DocumentNodeMarkerSortedList)sourceList;

            this.list[destinationIndex] = markerSortedList.list[sourceIndex];
        }
Exemplo n.º 2
0
 public DocumentNodeMarkerSortedList(DocumentNodeMarkerSortedList other)
     : this(other.Count)
 {
     this.list.AddRange((IEnumerable <DocumentNodeMarker>)other.list);
 }