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]];
            }
        }
    }