System.Collections.SortedList.SortedListDebugView.SortedListDebugView C# (CSharp) 메소드

SortedListDebugView() 공개 메소드

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

                _sortedList = sortedList;
            }
SortedList.SortedListDebugView