ImmutableStack<T>.Push(T) 方法

定义

将对象插入到不可变堆栈的顶部,并返回新堆栈。

public:
 System::Collections::Immutable::ImmutableStack<T> ^ Push(T value);
public System.Collections.Immutable.ImmutableStack<T> Push (T value);
member this.Push : 'T -> System.Collections.Immutable.ImmutableStack<'T>
Public Function Push (value As T) As ImmutableStack(Of T)

参数

value
T

要推送到堆栈中的对象。

返回

新堆栈。

适用于