1 write to list
System.Runtime.Serialization (1)
System\Xml\XmlBinaryWriterSession.cs (1)
112
list
= new Entry[16];
20 references to list
System.Runtime.Serialization (20)
System\Xml\XmlBinaryWriterSession.cs (20)
119
Array.Clear(
list
, 0,
list
.Length);
128
if (
list
[i].Key == key)
130
value =
list
[i].Value;
131
list
[i].Time = Now;
138
if (
list
[i].Key.Equals(key))
140
value =
list
[i].Value;
141
list
[i].Time = Now;
158
int minTime =
list
[0].Time;
161
if (
list
[i].Time < minTime)
164
minTime =
list
[i].Time;
168
list
[minIndex].Key = key;
169
list
[minIndex].Value = value;
170
list
[minIndex].Time = Now;
176
if (listCount <
list
.Length)
178
list
[listCount].Key = key;
179
list
[listCount].Value = value;
189
dictionary.Add(
list
[i].Key,
list
[i].Value);
214
list
[i].Time /= 2;