4 writes to _attributeCount
dotnet-svcutil-lib (4)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseReader.cs (4)
2561
_attributeCount
= 0;
2638
_attributeCount
= 0;
2670
_attributeCount
--;
2709
_attributeCount
++;
7 references to _attributeCount
dotnet-svcutil-lib (7)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseReader.cs (7)
2663
while (
_attributeCount
> 0)
2665
XmlAttribute attribute = _attributes[
_attributeCount
- 1];
2694
else if (_attributes.Length ==
_attributeCount
)
2696
XmlAttribute[] newAttributes = new XmlAttribute[
_attributeCount
* 2];
2697
Array.Copy(_attributes, 0, newAttributes, 0,
_attributeCount
);
2700
XmlAttribute attribute = _attributes[
_attributeCount
];
2704
_attributes[
_attributeCount
] = attribute;