2 writes to strings
System.Runtime.Serialization (2)
System\Xml\XmlBinaryReaderSession.cs (2)
45strings = new XmlDictionaryString[Math.Max(id + 1, 16)]; 51strings = newStrings;
15 references to strings
System.Runtime.Serialization (15)
System\Xml\XmlBinaryReaderSession.cs (15)
43if (strings == null) 47else if (id >= strings.Length) 49XmlDictionaryString[] newStrings = new XmlDictionaryString[Math.Min(Math.Max(id + 1, strings.Length * 2), MaxArrayEntries)]; 50Array.Copy(strings, newStrings, strings.Length); 53strings[id] = xmlString; 60if (strings != null && key >= 0 && key < strings.Length) 62result = strings[key]; 79if (strings != null) 81for (int i = 0; i < strings.Length; i++) 83XmlDictionaryString s = strings[i]; 123if (strings != null) 124Array.Clear(strings, 0, strings.Length);