NSDictionary.FromObjectsAndKeys Método

Definición

Sobrecargas

FromObjectsAndKeys(NSObject[], NSObject[])

Crea un diccionario a partir de un conjunto de valores y claves.

FromObjectsAndKeys(Object[], Object[])

Crea un diccionario a partir de un conjunto de valores y claves.

FromObjectsAndKeys(NSObject[], NSObject[], nint)

Crea un diccionario a partir de un conjunto de valores y claves.

FromObjectsAndKeys(Object[], Object[], nint)

Crea un diccionario a partir de un conjunto de valores y claves.

FromObjectsAndKeys(NSObject[], NSObject[])

Crea un diccionario a partir de un conjunto de valores y claves.

public static Foundation.NSDictionary FromObjectsAndKeys (Foundation.NSObject[] objects, Foundation.NSObject[] keys);
static member FromObjectsAndKeys : Foundation.NSObject[] * Foundation.NSObject[] -> Foundation.NSDictionary

Parámetros

objects
NSObject[]

Matriz de valores para el diccionario.

keys
NSObject[]

Matriz de claves para el diccionario.

Devoluciones

Se aplica a

FromObjectsAndKeys(Object[], Object[])

Crea un diccionario a partir de un conjunto de valores y claves.

public static Foundation.NSDictionary FromObjectsAndKeys (object[] objects, object[] keys);
static member FromObjectsAndKeys : obj[] * obj[] -> Foundation.NSDictionary

Parámetros

objects
Object[]

Matriz de valores para el diccionario.

keys
Object[]

Matriz de claves para el diccionario.

Devoluciones

Comentarios

Las claves y los valores se muestran primero en NSObjects mediante FromObject(Object).

Se aplica a

FromObjectsAndKeys(NSObject[], NSObject[], nint)

Crea un diccionario a partir de un conjunto de valores y claves.

public static Foundation.NSDictionary FromObjectsAndKeys (Foundation.NSObject[] objects, Foundation.NSObject[] keys, nint count);
static member FromObjectsAndKeys : Foundation.NSObject[] * Foundation.NSObject[] * nint -> Foundation.NSDictionary

Parámetros

objects
NSObject[]

Matriz de valores para el diccionario.

keys
NSObject[]

Matriz de claves para el diccionario.

count
System.System.IntPtr System.nativeint

Número de elementos que se van a usar en la creación, el número debe ser menor o igual que el número de elementos de las matrices.

Devoluciones

Se aplica a

FromObjectsAndKeys(Object[], Object[], nint)

Crea un diccionario a partir de un conjunto de valores y claves.

public static Foundation.NSDictionary FromObjectsAndKeys (object[] objects, object[] keys, nint count);
static member FromObjectsAndKeys : obj[] * obj[] * nint -> Foundation.NSDictionary

Parámetros

objects
Object[]

Matriz de valores para el diccionario.

keys
Object[]

Matriz de claves para el diccionario.

count
System.System.IntPtr System.nativeint

Número de elementos que se van a usar en la creación, el número debe ser menor o igual que el número de elementos de las matrices.

Devoluciones

Comentarios

Las claves y los valores se muestran primero en NSObjects mediante FromObject(Object).

Se aplica a