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)
585
get { lock (_root) { return
_list
.Count; } }
595
get { return
_list
.IsReadOnly; }
600
get { return
_list
.IsFixedSize; }
615
return
_list
[key];
622
_list
[key] = value;
631
_list
.Add(key, value);
637
get { lock (_root) { return
_list
.Capacity; } }
644
_list
.Clear();
652
return
_list
.Clone();
660
return
_list
.Contains(key);
668
return
_list
.ContainsKey(key);
676
return
_list
.ContainsValue(key);
684
_list
.CopyTo(array, index);
692
return
_list
.GetByIndex(index);
700
return
_list
.GetEnumerator();
708
return
_list
.GetKey(index);
716
return
_list
.GetKeyList();
724
return
_list
.GetValueList();
734
return
_list
.IndexOfKey(key);
742
return
_list
.IndexOfValue(value);
750
_list
.RemoveAt(index);
758
_list
.Remove(key);
766
_list
.SetByIndex(index, value);
772
return
_list
.ToDebugViewDictionaryItemArray();
779
_list
.TrimToSize();