1 write to _list
System.Collections.NonGeneric (1)
System\Collections\SortedList.cs (1)
579_list = list;
25 references to _list
System.Collections.NonGeneric (25)
System\Collections\SortedList.cs (25)
585get { lock (_root) { return _list.Count; } } 595get { return _list.IsReadOnly; } 600get { return _list.IsFixedSize; } 615return _list[key]; 622_list[key] = value; 631_list.Add(key, value); 637get { lock (_root) { return _list.Capacity; } } 644_list.Clear(); 652return _list.Clone(); 660return _list.Contains(key); 668return _list.ContainsKey(key); 676return _list.ContainsValue(key); 684_list.CopyTo(array, index); 692return _list.GetByIndex(index); 700return _list.GetEnumerator(); 708return _list.GetKey(index); 716return _list.GetKeyList(); 724return _list.GetValueList(); 734return _list.IndexOfKey(key); 742return _list.IndexOfValue(value); 750_list.RemoveAt(index); 758_list.Remove(key); 766_list.SetByIndex(index, value); 772return _list.ToDebugViewDictionaryItemArray(); 779_list.TrimToSize();