Adds an item to the series.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
public void Add(
	T item
)
Visual Basic (Declaration)
Public Sub Add ( _
	item As T _
)
Visual C++
public:
void Add(
	T item
)

Parameters

item
Type: T
The item to add to the series.

Remarks

If there is a current partial item (HasPartialItem is true), it will be removed.

See Also