NSMutableArray<TValue>.Item[UIntPtr] Property

Definition

Gets or sets the element at the specified index.

public TValue this[UIntPtr index] { get; set; }
public TValue? this[UIntPtr index] { get; set; }
member this.Item(unativeint) : 'Value with get, set

Parameters

index
UIntPtr

unativeint

The zero-based index of the element to get or set.

Property Value

TValue

The element at index, or null when getting if the element cannot be converted to TValue. Setting a null value is not allowed.

Exceptions

value is null.

index is greater than or equal to the array's count.

Applies to