IList<TValue>.push_back(TValue) 方法

定义

将一个新元素添加到容器的末尾。Adds a new element to the end of the container.

public:
 void push_back(TValue _Val);
public void push_back (TValue _Val);
abstract member push_back : 'Value -> unit
Public Sub push_back (_Val As TValue)

参数

_Val
TValue

要追加到容器的元素的值。The value of the element to append to the container.

注解

有关详细信息,请参阅 list::p ush_back (STL/CLR) For more information, see list::push_back (STL/CLR).

适用于