System.Reflection.ConstArray.this C# (CSharp) Method

this() public method

public this ( int index ) : byte
index int
return byte
        public byte this[int index]
        {
            get
            {
                if (index < 0 || index > m_length)
                    throw new IndexOutOfRangeException();

                unsafe 
                {
                    return ((byte*)m_constArray.ToPointer())[index];
                }
            }
        }
ConstArray