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)
243
if (index >=
_array
.Length)
246
return
_array
[index];
250
if (index >=
_array
.Length)
252
int[] newArray = new int[Math.Max(index + 1,
_array
.Length * 2)];
253
Array.Copy(
_array
, 0, newArray, 0,
_array
.Length);
257
_array
[index] = value;