1 write to _list
System.Private.DataContractSerialization (1)
System\Xml\XmlBinaryWriterSession.cs (1)
110
_list
= new Entry[16];
19 references to _list
System.Private.DataContractSerialization (19)
System\Xml\XmlBinaryWriterSession.cs (19)
117
Array.Clear(
_list
);
125
if (
_list
[i].Key == key)
127
value =
_list
[i].Value;
128
_list
[i].Time = Now;
135
if (
_list
[i].Key.Equals(key))
137
value =
_list
[i].Value;
138
_list
[i].Time = Now;
155
int minTime =
_list
[0].Time;
158
if (
_list
[i].Time < minTime)
161
minTime =
_list
[i].Time;
165
_list
[minIndex].Key = key;
166
_list
[minIndex].Value = value;
167
_list
[minIndex].Time = Now;
173
if (_listCount <
_list
.Length)
175
_list
[_listCount].Key = key;
176
_list
[_listCount].Value = value;
186
_dictionary.Add(
_list
[i].Key,
_list
[i].Value);
211
_list
[i].Time /= 2;