5 writes to index
System (5)
compmod\system\collections\generic\sortedlist.cs (5)
700this.index = 0; 709index = 0; 731index++; 735index = _sortedList.Count + 1; 786index = 0;
11 references to index
System (11)
compmod\system\collections\generic\sortedlist.cs (11)
717if( index == 0 || (index == _sortedList.Count + 1) ) { 728if ( (uint)index < (uint)_sortedList.Count ) { 729key = _sortedList.keys[index]; 730value = _sortedList.values[index]; 743if( index == 0 || (index == _sortedList.Count + 1) ) { 759if( index == 0 || (index == _sortedList.Count + 1) ) { 773if( index == 0 || (index == _sortedList.Count + 1) ) {