You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Inserts a new entry into the <see cref="IOrderedDictionary{TKey,TValue}"/> items with the specified key and value at the specified index.
21
+
/// Inserts a new entry into the <see cref="IIndexedDictionary{TKey,TValue}"/> items with the specified key and value at the specified index.
22
22
/// </summary>
23
23
/// <param name="index">The zero-based index at which the element should be inserted.</param>
24
24
/// <param name="key">The key of the entry to add.</param>
25
25
/// <param name="value">The value of the entry to add. The value can be <see langword="null"/> if the type of the values in the dictionary is a reference type.</param>
26
26
/// <exception cref="ArgumentOutOfRangeException"><paramref name="index"/> is less than 0.<br/>
27
27
/// -or-<br/>
28
28
/// <paramref name="index"/> is greater than <see cref="System.Collections.ICollection.Count"/>.</exception>
29
-
/// <exception cref="ArgumentException">An element with the same key already exists in the <see cref="IOrderedDictionary{TKey,TValue}"/>.</exception>
30
-
/// <exception cref="NotSupportedException">The <see cref="IOrderedDictionary{TKey,TValue}"/> is read-only.<br/>
29
+
/// <exception cref="ArgumentException">An element with the same key already exists in the <see cref="IIndexedDictionary{TKey,TValue}"/>.</exception>
30
+
/// <exception cref="NotSupportedException">The <see cref="IIndexedDictionary{TKey,TValue}"/> is read-only.<br/>
31
31
/// -or-<br/>
32
-
/// The <see cref="IOrderedDictionary{TKey,TValue}"/> has a fized size.</exception>
32
+
/// The <see cref="IIndexedDictionary{TKey,TValue}"/> has a fized size.</exception>
0 commit comments