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)
117Array.Clear(_list); 125if (_list[i].Key == key) 127value = _list[i].Value; 128_list[i].Time = Now; 135if (_list[i].Key.Equals(key)) 137value = _list[i].Value; 138_list[i].Time = Now; 155int minTime = _list[0].Time; 158if (_list[i].Time < minTime) 161minTime = _list[i].Time; 165_list[minIndex].Key = key; 166_list[minIndex].Value = value; 167_list[minIndex].Time = Now; 173if (_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;