NSMutableArray<TValue>.Item[UIntPtr] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.