MLMultiArray.Item[] 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.
Overloads
| Name | Description |
|---|---|
| Item[NSNumber[]] |
Accesses the point in the multi-dimensional array identified by |
| Item[IntPtr] |
Retrieves the element at |
| Item[IntPtr[]] |
Gets or sets the element at |
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.