Indexer set of the class
operator []=(int index, Range? value) { if (_iCount < index) { _updateSize(index); } _innerList[index - 1] = value; }