System.Collections.ArrayList.Range.Add C# (CSharp) Method

Add() public method

public Add ( Object value ) : int
value Object
return int
            public override int Add(Object value)
            {
                InternalUpdateRange();
                _baseList.Insert(_baseIndex + _baseSize, value);
                InternalUpdateVersion();
                return _baseSize++;
            }