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