1 write to _objects
System.Runtime.Serialization.Formatters (1)
System\Runtime\Serialization\Formatters\Binary\BinaryUtilClasses.cs (1)
181_objects = newItems;
9 references to _objects
System.Runtime.Serialization.Formatters (9)
System\Runtime\Serialization\Formatters\Binary\BinaryUtilClasses.cs (9)
156if (_top == (_objects.Length - 1)) 160_objects[++_top] = obj; 171object? obj = _objects[_top]; 172_objects[_top--] = null; 178int size = _objects.Length * 2; 180Array.Copy(_objects, newItems, _objects.Length); 185internal object? Peek() => _top < 0 ? null : _objects[_top]; 188internal object? PeekPeek() => _top < 1 ? null : _objects[_top - 1];