3 writes to _elements
dotnet-svcutil-lib (3)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ExtensionDataReader.cs (3)
106_elements = null; 497_elements = new ElementData[8]; 502_elements = newElements;
12 references to _elements
dotnet-svcutil-lib (12)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ExtensionDataReader.cs (12)
467_elements[_depth++] = _element; 488if (_elements != null) 490_element = _elements[_depth]; 496if (_elements == null) 498else if (_elements.Length == _depth) 500ElementData[] newElements = new ElementData[_elements.Length * 2]; 501Array.Copy(_elements, 0, newElements, 0, _elements.Length); 509return (_elements == null || _elements.Length <= nextDepth || _elements[nextDepth] == null) 510? new ElementData() : _elements[nextDepth];