Method PutAll
PutAll(IDictionary<Char[], TValue>)
This implementation enumerates over the specified IDictionary{char[],TValue}'s entries, and calls this map's Put(Char[], TValue) operation once for each entry.
Declaration
public virtual void PutAll(IDictionary<char[], TValue> collection)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IDictionary<System.Char[], TValue> | collection | A dictionary of values to add/update in the current map. |
PutAll(IDictionary<String, TValue>)
This implementation enumerates over the specified IDictionary{string,TValue}'s entries, and calls this map's Put(String, TValue) operation once for each entry.
Declaration
public virtual void PutAll(IDictionary<string, TValue> collection)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IDictionary<System.String, TValue> | collection | A dictionary of values to add/update in the current map. |
PutAll(IDictionary<ICharSequence, TValue>)
This implementation enumerates over the specified IDictionary{ICharSequence,TValue}'s entries, and calls this map's Put(ICharSequence, TValue) operation once for each entry.
Declaration
public virtual void PutAll(IDictionary<ICharSequence, TValue> collection)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IDictionary<ICharSequence, TValue> | collection | A dictionary of values to add/update in the current map. |
PutAll(IDictionary<Object, TValue>)
This implementation enumerates over the specified IDictionary{object,TValue}'s entries, and calls this map's Put(Object, TValue) operation once for each entry.
Declaration
public virtual void PutAll(IDictionary<object, TValue> collection)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IDictionary<System.Object, TValue> | collection | A dictionary of values to add/update in the current map. |
PutAll(IEnumerable<KeyValuePair<Char[], TValue>>)
This implementation enumerates over the specified IEnumerable{KeyValuePair{char[],TValue}}'s entries, and calls this map's Put(Char[], TValue) operation once for each entry.
Declaration
public virtual void PutAll(IEnumerable<KeyValuePair<char[], TValue>> collection)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Char[], TValue>> | collection | The values to add/update in the current map. |
PutAll(IEnumerable<KeyValuePair<String, TValue>>)
This implementation enumerates over the specified IEnumerable{KeyValuePair{string,TValue}}'s entries, and calls this map's Put(String, TValue) operation once for each entry.
Declaration
public virtual void PutAll(IEnumerable<KeyValuePair<string, TValue>> collection)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String, TValue>> | collection | The values to add/update in the current map. |
PutAll(IEnumerable<KeyValuePair<ICharSequence, TValue>>)
This implementation enumerates over the specified IEnumerable{KeyValuePair{ICharSequence,TValue}}'s entries, and calls this map's Put(ICharSequence, TValue) operation once for each entry.
Declaration
public virtual void PutAll(IEnumerable<KeyValuePair<ICharSequence, TValue>> collection)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<ICharSequence, TValue>> | collection | The values to add/update in the current map. |
PutAll(IEnumerable<KeyValuePair<Object, TValue>>)
This implementation enumerates over the specified IEnumerable{KeyValuePair{object,TValue}}'s entries, and calls this map's Put(Object, TValue) operation once for each entry.
Declaration
public virtual void PutAll(IEnumerable<KeyValuePair<object, TValue>> collection)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Object, TValue>> | collection | The values to add/update in the current map. |