System.Collections.SortedList.SortedListDebugView.SortedListDebugView C# (CSharp) Method

SortedListDebugView() public method

public SortedListDebugView ( SortedList sortedList ) : System.Diagnostics
sortedList SortedList
return System.Diagnostics
            public SortedListDebugView(SortedList sortedList)
            {
                if (sortedList == null)
                {
                    throw new ArgumentNullException(nameof(sortedList));
                }
                Contract.EndContractBlock();

                _sortedList = sortedList;
            }
SortedList.SortedListDebugView