System.Collections.ArrayList.FixedSizeArrayList.ToArray C# (CSharp) Method

ToArray() private method

private ToArray ( Type type ) : Array
type System.Type
return System.Array
            public override Array ToArray(Type type)
            {
                return _list.ToArray(type);
            }

Same methods

ArrayList.FixedSizeArrayList::ToArray ( ) : Object[]