DictionaryContainer.SetArrayValue Method

Definition

Overloads

SetArrayValue(NSString, NSNumber[])

Associates the NSNumber array values with key.

SetArrayValue(NSString, INativeObject[])

Associates the INativeObject array values with key.

SetArrayValue(NSString, String[])

Associates the T:System.String array values with key.

SetArrayValue<T>(NSString, T[])

Associates the array values of type T with key.

SetArrayValue(NSString, NSNumber[])

Associates the NSNumber array values with key.

protected void SetArrayValue (Foundation.NSString key, Foundation.NSNumber[] values);
member this.SetArrayValue : Foundation.NSString * Foundation.NSNumber[] -> unit

Parameters

key
NSString

The identifier to be associated with the array.

values
NSNumber[]

The NSNumber array to be associated with key.

Applies to

SetArrayValue(NSString, INativeObject[])

Associates the INativeObject array values with key.

protected void SetArrayValue (Foundation.NSString key, ObjCRuntime.INativeObject[] values);
member this.SetArrayValue : Foundation.NSString * ObjCRuntime.INativeObject[] -> unit

Parameters

key
NSString

The identifier to be associated with the array.

values
INativeObject[]

The INativeObject array to be associated with key.

Applies to

SetArrayValue(NSString, String[])

Associates the T:System.String array values with key.

protected void SetArrayValue (Foundation.NSString key, string[] values);
member this.SetArrayValue : Foundation.NSString * string[] -> unit

Parameters

key
NSString

The identifier to be associated with the array.

values
String[]

The T:System.String array to be associated with key.

Applies to

SetArrayValue<T>(NSString, T[])

Associates the array values of type T with key.

protected void SetArrayValue<T> (Foundation.NSString key, T[] values);
member this.SetArrayValue : Foundation.NSString * 'T[] -> unit

Type Parameters

T

The type stored by the array.

Parameters

key
NSString

The identifier to be associated with the array.

values
T[]

The array of type T to be associated with key.

Applies to