SortedList.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add Method 

Note: This method is new in the .NET Framework version 2.0.

Adds a key/value pair to the ICollection.

Namespace: System.Collections.Generic
Assembly: System (in system.dll)

Syntax

'Declaration
Private Sub System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add ( _
    keyValuePair As KeyValuePair(Of TKey, TValue) _
) Implements ICollection(Of KeyValuePair(Of TKey, TValue)).Add
'Usage
Dim instance As SortedList(Of TKey, TValue)
Dim keyValuePair As KeyValuePair(Of TKey, TValue)

CType(instance, ICollection(Of KeyValuePair(Of TKey, TValue))).Add(keyValuePair)
void ICollection<KeyValuePair<TKey,TValue>>.Add (
    KeyValuePair<TKey,TValue> keyValuePair
)
private:
virtual void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey,TValue>>.Add (
    KeyValuePair<TKey, TValue> keyValuePair
) sealed = ICollection<KeyValuePair<TKey, TValue>>::Add
J# supports the use of explicit interface implementations, but not the declaration of new ones.
JScript supports the use of explicit interface implementations, but not the declarations of new ones.

Parameters

Remarks

This method is an O(n) operation for unsorted data, where n is Count. It is an O(log n) operation if the new element is added at the end of the list. If insertion causes a resize, the operation is O(n).

Platforms

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

Version Information

.NET Framework

Supported in: 2.0

.NET Compact Framework

Supported in: 2.0

See Also

Reference

SortedList Generic Class
SortedList Members
System.Collections.Generic Namespace
SortedList.Add Method
Item
KeyValuePair Generic Structure