2 writes to array
System.Runtime.Serialization (2)
System\Xml\XmlBinaryWriterSession.cs (2)
234
this.
array
= new int[size];
252
array
= newArray;
7 references to array
System.Runtime.Serialization (7)
System\Xml\XmlBinaryWriterSession.cs (7)
241
if (index >=
array
.Length)
244
return
array
[index];
248
if (index >=
array
.Length)
250
int[] newArray = new int[Math.Max(index + 1,
array
.Length * 2)];
251
Array.Copy(
array
, newArray,
array
.Length);
255
array
[index] = value;