1 write to _dict
System.Collections (1)
System\Collections\Generic\SortedList.cs (1)
1008
_dict
= dictionary;
12 references to _dict
System.Collections (12)
System\Collections\Generic\SortedList.cs (12)
1013
get { return
_dict
._size; }
1028
get { return ((ICollection)
_dict
).SyncRoot; }
1043
return
_dict
.ContainsKey(key);
1049
Array.Copy(
_dict
.keys, 0, array, arrayIndex,
_dict
.Count);
1060
Array.Copy(
_dict
.keys, 0, array!, arrayIndex,
_dict
.Count);
1077
return
_dict
.GetKeyAtIndex(index);
1087
new SortedListKeyEnumerator(
_dict
);
1095
int i = Array.BinarySearch<TKey>(
_dict
.keys, 0,
1096
_dict
.Count, key,
_dict
.comparer);