System.Collections.ArrayList.ArrayListDebugView.ArrayListDebugView C# (CSharp) Method

ArrayListDebugView() public method

public ArrayListDebugView ( ArrayList arrayList ) : System.Security
arrayList ArrayList
return System.Security
            public ArrayListDebugView(ArrayList arrayList)
            {
                if (arrayList == null)
                    throw new ArgumentNullException(nameof(arrayList));

                _arrayList = arrayList;
            }
ArrayList.ArrayListDebugView