Adds an item to the Collection.

Namespace: MonoSoftware.Core.Collections
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public virtual void Add(
	KeyValuePair<TKey, TValue> item
)
Visual Basic
Public Overridable Sub Add ( 
	item As KeyValuePair(Of TKey, TValue)
)
Visual C++
public:
virtual void Add(
	KeyValuePair<TKey, TValue> item
)
F#
abstract Add : 
        item : KeyValuePair<'TKey, 'TValue> -> unit 
override Add : 
        item : KeyValuePair<'TKey, 'TValue> -> unit 

Parameters

item
Type: System.Collections.Generic..::..KeyValuePair<(Of <(<'TKey, TValue>)>)>
The object to add to the Collection.

Implements

ICollection<(Of <(<'T>)>)>..::..Add(T)

See Also