1 write to _list
mscorlib (1)
system\collections\sortedlist.cs (1)
564_list = list;
25 references to _list
mscorlib (25)
system\collections\sortedlist.cs (25)
569get { lock(_root) { return _list.Count; } } 577get { return _list.IsReadOnly; } 581get { return _list.IsFixedSize; } 592return _list[key]; 597_list[key] = value; 604_list.Add(key, value); 609get{ lock(_root) { return _list.Capacity; } } 614_list.Clear(); 620return _list.Clone(); 626return _list.Contains(key); 632return _list.ContainsKey(key); 638return _list.ContainsValue(key); 644_list.CopyTo(array, index); 651return _list.GetByIndex(index); 657return _list.GetEnumerator(); 664return _list.GetKey(index); 670return _list.GetKeyList(); 676return _list.GetValueList(); 686return _list.IndexOfKey(key); 693return _list.IndexOfValue(value); 700_list.RemoveAt(index); 706_list.Remove(key); 713_list.SetByIndex(index, value); 718return _list.ToKeyValuePairsArray(); 723_list.TrimToSize();