DictionaryContainer.GetArray Method

Definition

Overloads

GetArray<T>(NSString)

Retrieves the array of type T associated with key.

GetArray<T>(NSString, Func<IntPtr,T>)

GetArray<T>(NSString)

Retrieves the array of type T associated with key.

protected T[] GetArray<T> (Foundation.NSString key) where T : Foundation.NSObject;
member this.GetArray : Foundation.NSString -> 'T[] (requires 'T :> Foundation.NSObject)

Type Parameters

T

The type of values stored in the array identified by key.

Parameters

key
NSString

The identifier of the array.

Returns

T[]

Applies to

GetArray<T>(NSString, Func<IntPtr,T>)

protected T[] GetArray<T> (Foundation.NSString key, Func<IntPtr,T> creator);
member this.GetArray : Foundation.NSString * Func<nativeint, 'T> -> 'T[]

Type Parameters

T

Parameters

key
NSString
creator

Func<IntPtr,T>

Func<nativeint,T>

Returns

T[]

Applies to