コード例 #1
0
ファイル: StackQueue.cs プロジェクト: viphak/campynet
        public ArraySection <T> Section(int length)
        {
            ArraySection <T> result = new ArraySection <T>(_items, this._top, length);

            return(result);
        }
コード例 #2
0
ファイル: ArraySection.cs プロジェクト: viphak/campynet
 static void Resize(ref ArraySection <T> arr, int new_length)
 {
 }
コード例 #3
0
ファイル: StackQueue.cs プロジェクト: viphak/campynet
        public ArraySection <T> Section(int start, int length)
        {
            ArraySection <T> result = new ArraySection <T>(_items, start, length);

            return(result);
        }