Exemple #1
0
        public ArraySection <T> Section(int length)
        {
            ArraySection <T> result = new ArraySection <T>(_items, this._top, length);

            return(result);
        }
Exemple #2
0
        public ArraySection <T> Section(int start, int length)
        {
            ArraySection <T> result = new ArraySection <T>(_items, start, length);

            return(result);
        }