System.Collections.Stack.StackDebugView.StackDebugView C# (CSharp) Method

StackDebugView() public method

public StackDebugView ( Stack stack ) : System.Diagnostics
stack Stack
return System.Diagnostics
            public StackDebugView(Stack stack)
            {
                if (stack == null)
                    throw new ArgumentNullException(nameof(stack));
                Contract.EndContractBlock();

                _stack = stack;
            }
Stack.StackDebugView