NSMutableDictionary<TKey,TValue> Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
NSMutableDictionary<TKey,TValue>() | |
NSMutableDictionary<TKey,TValue>(NSCoder) |
Constructeur qui initialise l’objet à partir des données stockées dans l’objet unarchiver. |
NSMutableDictionary<TKey,TValue>(NSDictionary<TKey,TValue>) | |
NSMutableDictionary<TKey,TValue>(NSMutableDictionary<TKey,TValue>) | |
NSMutableDictionary<TKey,TValue>(TKey, TValue) | |
NSMutableDictionary<TKey,TValue>(TKey[], TValue[]) |
NSMutableDictionary<TKey,TValue>()
public NSMutableDictionary ();
S’applique à
NSMutableDictionary<TKey,TValue>(NSCoder)
Constructeur qui initialise l’objet à partir des données stockées dans l’objet unarchiver.
public NSMutableDictionary (Foundation.NSCoder coder);
new Foundation.NSMutableDictionary<'Key, 'Value (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject and 'Value : null and 'Value :> ObjCRuntime.INativeObject)> : Foundation.NSCoder -> Foundation.NSMutableDictionary<'Key, 'Value (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject and 'Value : null and 'Value :> ObjCRuntime.INativeObject)>
Paramètres
- coder
- NSCoder
Objet unarchiver.
Remarques
Ce constructeur est fourni pour permettre à la classe d’être initialisée à partir d’un unarchiver (par exemple, lors de la désérialisation nib). Cela fait partie du NSCoding protocole.
Si les développeurs veulent créer une sous-classe de cet objet et continuer à prendre en charge la désérialisation à partir d’une archive, ils doivent implémenter un constructeur avec une signature identique : prendre un seul paramètre de type NSCoder et le décorer avec la déclaration d’attribut [Export(« initWithCoder:"] .
L’état de cet objet peut également être sérialisé à l’aide de la méthode complémentaire, EncodeTo.
S’applique à
NSMutableDictionary<TKey,TValue>(NSDictionary<TKey,TValue>)
public NSMutableDictionary (Foundation.NSDictionary<TKey,TValue> other);
new Foundation.NSMutableDictionary<'Key, 'Value (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject and 'Value : null and 'Value :> ObjCRuntime.INativeObject)> : Foundation.NSDictionary<'Key, 'Value (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject and 'Value : null and 'Value :> ObjCRuntime.INativeObject)> -> Foundation.NSMutableDictionary<'Key, 'Value (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject and 'Value : null and 'Value :> ObjCRuntime.INativeObject)>
Paramètres
S’applique à
NSMutableDictionary<TKey,TValue>(NSMutableDictionary<TKey,TValue>)
public NSMutableDictionary (Foundation.NSMutableDictionary<TKey,TValue> other);
new Foundation.NSMutableDictionary<'Key, 'Value (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject and 'Value : null and 'Value :> ObjCRuntime.INativeObject)> : Foundation.NSMutableDictionary<'Key, 'Value (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject and 'Value : null and 'Value :> ObjCRuntime.INativeObject)> -> Foundation.NSMutableDictionary<'Key, 'Value (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject and 'Value : null and 'Value :> ObjCRuntime.INativeObject)>
Paramètres
S’applique à
NSMutableDictionary<TKey,TValue>(TKey, TValue)
public NSMutableDictionary (TKey key, TValue value);
new Foundation.NSMutableDictionary<'Key, 'Value (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject and 'Value : null and 'Value :> ObjCRuntime.INativeObject)> : 'Key * 'Value -> Foundation.NSMutableDictionary<'Key, 'Value (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject and 'Value : null and 'Value :> ObjCRuntime.INativeObject)>
Paramètres
- key
- TKey
- value
- TValue
S’applique à
NSMutableDictionary<TKey,TValue>(TKey[], TValue[])
public NSMutableDictionary (TKey[] keys, TValue[] values);
new Foundation.NSMutableDictionary<'Key, 'Value (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject and 'Value : null and 'Value :> ObjCRuntime.INativeObject)> : 'Key[] * 'Value[] -> Foundation.NSMutableDictionary<'Key, 'Value (requires 'Key : null and 'Key :> ObjCRuntime.INativeObject and 'Value : null and 'Value :> ObjCRuntime.INativeObject)>
Paramètres
- keys
- TKey[]
- values
- TValue[]