Share via


MLMultiArray.Item[] Property

Definition

Overloads

Name Description
Item[NSNumber[]]

Accesses the point in the multi-dimensional array identified by key.

Item[IntPtr]

Retrieves the element at idx, as if the array were single-dimensional.

Item[IntPtr[]]

Gets or sets the element at indices.

Item[NSNumber[]]

Accesses the point in the multi-dimensional array identified by key.

public Foundation.NSNumber this[Foundation.NSNumber[] key] { get; set; }
member this.Item(Foundation.NSNumber[]) : Foundation.NSNumber with get, set

Parameters

key
NSNumber[]

A numeric identifier for the object to get or set.

Property Value

Applies to

Item[IntPtr]

Retrieves the element at idx, as if the array were single-dimensional.

public Foundation.NSNumber this[IntPtr idx] { get; set; }
member this.Item(nativeint) : Foundation.NSNumber with get, set

Parameters

idx
IntPtr

nativeint

A numeric identifier for the object to get or set.

Property Value

Applies to

Item[IntPtr[]]

Gets or sets the element at indices.

public Foundation.NSNumber this[params IntPtr[] indices] { get; set; }
member this.Item(nativeint[]) : Foundation.NSNumber with get, set

Parameters

indices

IntPtr[]

nativeint[]

A multidimensional coordinate for the object to get or set.

Property Value

Applies to