OrderedDictionary<TKey,TValue>.Insert(Int32, TKey, TValue) 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.
Inserts an item into the collection at the specified index.
public:
void Insert(int index, TKey key, TValue value);
public void Insert (int index, TKey key, TValue value);
member this.Insert : int * 'Key * 'Value -> unit
Public Sub Insert (index As Integer, key As TKey, value As TValue)
Parameters
- index
- Int32
The zero-based index at which item should be inserted.
- key
- TKey
The key to insert.
- value
- TValue
The value to insert.
Exceptions
key is null
.
An element with the same key already exists in the OrderedDictionary<TKey,TValue>.
index
is less than 0 or greater than Count.
Applies to
Werk met ons samen op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en bekijken. Raadpleeg onze gids voor inzenders voor meer informatie.