3 writes to elements
System.Runtime.Serialization (3)
System\Runtime\Serialization\ExtensionDataReader.cs (3)
115
this.
elements
= null;
773
elements
= new ElementData[8];
778
elements
= newElements;
12 references to elements
System.Runtime.Serialization (12)
System\Runtime\Serialization\ExtensionDataReader.cs (12)
743
elements
[depth++] = this.element;
764
if (
elements
!= null)
766
this.element =
elements
[depth];
772
if (
elements
== null)
774
else if (
elements
.Length == depth)
776
ElementData[] newElements = new ElementData[
elements
.Length * 2];
777
Array.Copy(
elements
, 0, newElements, 0,
elements
.Length);
785
return (
elements
== null ||
elements
.Length <= nextDepth ||
elements
[nextDepth] == null)
786
? new ElementData() :
elements
[nextDepth];