2 writes to _top
System.Runtime.Serialization.Formatters (2)
System\Runtime\Serialization\Formatters\Binary\BinaryUtilClasses.cs (2)
160_objects[++_top] = obj; 172_objects[_top--] = null;
8 references to _top
System.Runtime.Serialization.Formatters (8)
System\Runtime\Serialization\Formatters\Binary\BinaryUtilClasses.cs (8)
156if (_top == (_objects.Length - 1)) 166if (_top < 0) 171object? obj = _objects[_top]; 185internal object? Peek() => _top < 0 ? null : _objects[_top]; 188internal object? PeekPeek() => _top < 1 ? null : _objects[_top - 1]; 191internal bool IsEmpty() => _top <= 0;