2 writes to _array
dotnet-svcutil-lib (2)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBinaryWriterSession.cs (2)
236_array = new int[size]; 254_array = newArray;
7 references to _array
dotnet-svcutil-lib (7)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBinaryWriterSession.cs (7)
243if (index >= _array.Length) 246return _array[index]; 250if (index >= _array.Length) 252int[] newArray = new int[Math.Max(index + 1, _array.Length * 2)]; 253Array.Copy(_array, 0, newArray, 0, _array.Length); 257_array[index] = value;