System.Collections.ArrayList.ArrayListDebugView.ArrayListDebugView C# (CSharp) Метод

ArrayListDebugView() публичный Метод

public ArrayListDebugView ( ArrayList arrayList ) : System.Security
arrayList ArrayList
Результат System.Security
            public ArrayListDebugView(ArrayList arrayList)
            {
                if (arrayList == null)
                    throw new ArgumentNullException(nameof(arrayList));

                _arrayList = arrayList;
            }
ArrayList.ArrayListDebugView