OpenTK.Platform.MacOS.Carbon.CFArray.this C# (CSharp) Method

this() public method

public this ( int index ) : IntPtr
index int
return System.IntPtr
        public IntPtr this[int index]
        {
            get
            {
                if (index >= Count || index < 0)
                    throw new IndexOutOfRangeException();
                return CF.CFArrayGetValueAtIndex(arrayRef, index);
            }
        }
    }