Rhino.Tools.Debugger.Dim.ContextData.GetFrame C# (CSharp) Méthode

GetFrame() public méthode

Returns the stack frame with the given index.
Returns the stack frame with the given index.
public GetFrame ( int frameNumber ) : Dim.StackFrame
frameNumber int
Résultat Dim.StackFrame
			public virtual Dim.StackFrame GetFrame(int frameNumber)
			{
				int num = frameStack.Size() - frameNumber - 1;
				return (Dim.StackFrame)frameStack.Get(num);
			}