DictionaryContainer.SetArrayValue Method    
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
| SetArrayValue(NSString, NSNumber[]) | Associates the NSNumber array  | 
| SetArrayValue(NSString, INativeObject[]) | Associates the INativeObject array  | 
| SetArrayValue(NSString, String[]) | Associates the T:System.String array  | 
| SetArrayValue<T>(NSString, T[]) | Associates the array  | 
SetArrayValue(NSString, NSNumber[])
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[] -> unitParameters
- 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[] -> unitParameters
- 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[] -> unitType 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.