Realms.ListHandle.GetObjectAtIndex C# (CSharp) Method

GetObjectAtIndex() public method

public GetObjectAtIndex ( int index ) : IntPtr
index int
return System.IntPtr
        public override IntPtr GetObjectAtIndex(int index)
        {
            NativeException nativeException;
            var result = NativeMethods.get(this, (IntPtr)index, out nativeException);
            nativeException.ThrowIfNecessary();
            return result;
        }