IVector<T>.Append(T) Method

Definition

Appends an item to the end of the vector.

public:
 void Append(T value);
void Append(T const& value);
public void Append(T value);
Public Sub Append (value As T)

Parameters

value
T

The item to append to the vector.

Remarks

When programming with .NET, this interface is hidden, and you should use the System.Collections.Generic.IList<T> interface.

Applies to

See also