2 writes to _objectArray
dotnet-svcutil-lib (2)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ObjectReferenceStack.cs (2)
26_objectArray = new object[InitialArraySize]; 32Array.Resize<object>(ref _objectArray, _objectArray.Length * 2);
8 references to _objectArray
dotnet-svcutil-lib (8)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ObjectReferenceStack.cs (8)
24if (_objectArray == null) 27_objectArray[_count++] = obj; 31if (_count == _objectArray.Length) 32Array.Resize<object>(ref _objectArray, _objectArray.Length * 2); 33_objectArray[_count++] = obj; 59if ((_objectArray != null) && _objectArray[_count - 1] == obj) 99if (Object.ReferenceEquals(obj, _objectArray[i]) && _isReferenceArray != null && !_isReferenceArray[i])