BitMiracle.LibJpeg.Classic.Internal.ComponentBuffer.this C# (CSharp) Метод

this() публичный Метод

public this ( int i ) : byte[]
i int
Результат byte[]
        public byte[] this[int i]
        {
            get
            {
                if (m_funnyIndices == null)
                    return m_buffer[i];

                return m_buffer[m_funnyIndices[i + m_funnyOffset]];
            }
        }
    }