コード例 #1
0
ファイル: ArraySegment.cs プロジェクト: pedrobsaila/runtime
        public T this[int index]
        {
            get
            {
                if ((uint)index >= (uint)_count)
                {
                    ThrowHelper.ThrowArgumentOutOfRange_IndexMustBeLessException();
                }

                return(_array ![_offset + index]);