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)
569
get { lock(_root) { return
_list
.Count; } }
577
get { return
_list
.IsReadOnly; }
581
get { return
_list
.IsFixedSize; }
592
return
_list
[key];
597
_list
[key] = value;
604
_list
.Add(key, value);
609
get{ lock(_root) { return
_list
.Capacity; } }
614
_list
.Clear();
620
return
_list
.Clone();
626
return
_list
.Contains(key);
632
return
_list
.ContainsKey(key);
638
return
_list
.ContainsValue(key);
644
_list
.CopyTo(array, index);
651
return
_list
.GetByIndex(index);
657
return
_list
.GetEnumerator();
664
return
_list
.GetKey(index);
670
return
_list
.GetKeyList();
676
return
_list
.GetValueList();
686
return
_list
.IndexOfKey(key);
693
return
_list
.IndexOfValue(value);
700
_list
.RemoveAt(index);
706
_list
.Remove(key);
713
_list
.SetByIndex(index, value);
718
return
_list
.ToKeyValuePairsArray();
723
_list
.TrimToSize();