3 writes to _stackFrames
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\StackTrace.cs (2)
130_stackFrames = [frame]; 144_stackFrames = frameList.ToArray();
src\System\Diagnostics\StackTrace.CoreCLR.cs (1)
75_stackFrames = new StackFrame[_numOfFrames];
5 references to _stackFrames
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\StackTrace.cs (4)
159if (_stackFrames != null && index < _numOfFrames && index >= 0) 160return _stackFrames[index + _methodsToSkip]; 173if (_stackFrames == null || _numOfFrames <= 0) 179Array.Copy(_stackFrames, _methodsToSkip, array, 0, _numOfFrames);
src\System\Diagnostics\StackTrace.CoreCLR.cs (1)
79_stackFrames[i] = new StackFrame(StackF, i, fNeedFileInfo);