Méthode | Description | |
---|---|---|
Add ( object key, object value ) : void |
Adds an element with the provided key and value to the T:System.Collections.IDictionary object.
|
|
Clear ( ) : void |
Removes all elements from the T:System.Collections.IDictionary object.
|
|
Contains ( object key ) : bool |
Determines whether the T:System.Collections.IDictionary object contains an element with the specified key.
|
|
CopyTo ( |
Copies the elements of the T:System.Collections.ICollection to an T:System.Array, starting at a particular T:System.Array index.
|
|
GetEnumerator ( ) : IEnumerator |
Returns an enumerator that iterates through a collection.
|
|
ReflectionBasedDictionaryAdapter ( object target ) : System |
Initializes a new instance of the ReflectionBasedDictionaryAdapter class.
|
|
Remove ( object key ) : void |
Removes the element with the specified key from the T:System.Collections.IDictionary object.
|
|
this ( object key ) : object |
Gets or sets the System.Object with the specified key.
|
Méthode | Description | |
---|---|---|
IDictionary ( ) : IDictionaryEnumerator |
Returns an T:System.Collections.IDictionaryEnumerator object for the T:System.Collections.IDictionary object.
|
public Add ( object key, object value ) : void | ||
key | object | The |
value | object | The |
Résultat | void |
public Contains ( object key ) : bool | ||
key | object | The key to locate in the |
Résultat | bool |
public CopyTo ( |
||
array | The one-dimensional |
|
index | int | The zero-based index in |
Résultat | void |
public ReflectionBasedDictionaryAdapter ( object target ) : System | ||
target | object | The target. |
Résultat | System |
public Remove ( object key ) : void | ||
key | object | The key of the element to remove. |
Résultat | void |