예제 #1
0
파일: StackQueue.cs 프로젝트: baufeng/Campy
        public ListSection <T> Section(int length)
        {
            ListSection <T> result = new ListSection <T>(_items, this._top, length);

            return(result);
        }
예제 #2
0
 static void Resize(ref ListSection <T> arr, int new_length)
 {
 }
예제 #3
0
파일: StackQueue.cs 프로젝트: baufeng/Campy
        public ListSection <T> Section(int start, int length)
        {
            ListSection <T> result = new ListSection <T>(_items, start, length);

            return(result);
        }