2 writes to _strings
System.Private.DataContractSerialization (2)
System\Xml\XmlBinaryReaderSession.cs (2)
43_strings = new XmlDictionaryString[Math.Max(id + 1, 16)]; 49_strings = newStrings;
14 references to _strings
System.Private.DataContractSerialization (14)
System\Xml\XmlBinaryReaderSession.cs (14)
41if (_strings == null) 45else if (id >= _strings.Length) 47XmlDictionaryString[] newStrings = new XmlDictionaryString[Math.Min(Math.Max(id + 1, _strings.Length * 2), MaxArrayEntries)]; 48Array.Copy(_strings, newStrings, _strings.Length); 51_strings[id] = xmlString; 58if (_strings != null && key >= 0 && key < _strings.Length) 60result = _strings[key]; 76if (_strings != null) 78for (int i = 0; i < _strings.Length; i++) 80XmlDictionaryString s = _strings[i]; 120if (_strings != null) 121Array.Clear(_strings);